text1 stringlengths 2 269k | text2 stringlengths 2 242k | label int64 0 1 |
|---|---|---|
# Bug report
## To Reproduce
I'm working on reproducing, but next.js provides zero information about what's
happening, so it's nearly impossible for me to actually identify where the
problem is. All I know is that my code isn't working.
## Expected behavior
Clicking this component should redirect to the about page.
<Link href="/about">About</Link>
A meta issue: If it does not redirect to the about page, next.js should
provide some debug output to explain why it's not working. It's hard to
isolate a bug when the entire HMR system is blackboxed.
## System information
* macOS
* chrome
* Next.js v 8.0.0
## Additional context
I'm using a custom server and clean routes. The clean route pages do load
properly, but the other pages in the "/pages" directory do not load properly.
If I navigate directly to the url (eg. /about), the About page does load.
This might be related to #6317 and #6497
|
const app = next({
dev,
dir:'./src'
})
* [ x] I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
It should load all the plugins in my .babelrc. It seems like it doesn't load
my .babelrc and doesn't load the presets/
## Current Behavior
`You may need an appropriate loader to handle this file type. | layout | }) =>
( | <div> | <Container> | <TextContainer>`
## Steps to Reproduce (for bugs)
1. Create a custom server and a custom .babelrc
2. Config a custom dir like:
const app = next({
dev,
dir:'./src'
})
3. run server
| 0 |
## Bug Report
**Current Behavior**
When node is installed in Version 13 or 14 yarn dev will fail with following
error:
yarn run v1.22.4
$ vue-cli-service serve
INFO Starting development server...
98% after emitting SizeLimitsPlugin
ERROR Failed to compile with 1 errors 4:37:32 PM
error in ./src/main.js
Module build failed (from ./node_modules/babel-loader/lib/index.js):
Error: [BABEL] /home/dennis/Documents/****/****/src/main.js: Cannot find module '@babel/compat-data/corejs3-shipped-proposals'
Require stack:
- /home/dennis/Documents/****/****/node_modules/@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js
- /home/dennis/Documents/****/****/node_modules/@babel/preset-env/lib/index.js
- /home/dennis/Documents/****/****/node_modules/@vue/babel-preset-app/index.js
- /home/dennis/Documents/****/****/node_modules/@vue/cli-plugin-babel/preset.js
- /home/dennis/Documents/****/****/node_modules/@babel/core/lib/config/files/plugins.js
- /home/dennis/Documents/****/****/node_modules/@babel/core/lib/config/files/index.js
- /home/dennis/Documents/****/****/node_modules/@babel/core/lib/index.js
- /home/dennis/Documents/****/****/node_modules/@vue/cli-plugin-babel/index.js
- /home/dennis/Documents/****/****/node_modules/@vue/cli-service/lib/Service.js
- /home/dennis/Documents/****/****/node_modules/@vue/cli-service/bin/vue-cli-service.js (While processing: "/home/dennis/Documents/****/****/node_modules/@vue/cli-plugin-babel/preset.js")
at Function.Module._resolveFilename (internal/modules/cjs/loader.js:952:15)
at Function.Module._load (internal/modules/cjs/loader.js:835:27)
at Module.require (internal/modules/cjs/loader.js:1012:19)
at require (internal/modules/cjs/helpers.js:72:18)
at Object.<anonymous> (/home/dennis//home/dennis/Documents/****/****/node_modules/@babel/preset-env/lib/polyfills/corejs3/usage-plugin.js:10:55)
at Module._compile (internal/modules/cjs/loader.js:1123:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
at Module.load (internal/modules/cjs/loader.js:972:32)
at Function.Module._load (internal/modules/cjs/loader.js:872:14)
at Module.require (internal/modules/cjs/loader.js:1012:19)
at require (internal/modules/cjs/helpers.js:72:18)
at Object.<anonymous> (/home/dennis/Documents/****/****/node_modules/@babel/preset-env/lib/index.js:29:44)
at Module._compile (internal/modules/cjs/loader.js:1123:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1143:10)
at Module.load (internal/modules/cjs/loader.js:972:32)
at Function.Module._load (internal/modules/cjs/loader.js:872:14)
@ multi (webpack)-dev-server/client?http://192.168.188.21:8081/sockjs-node (webpack)/hot/dev-server.js ./src/main.js
**Input Code**
* Just add it to the dependencies
**Expected behavior/code**
To not fail when building.
**Babel Configuration (babel.config.js, .babelrc, package.json#babel, cli
command, .eslintrc)**
* Filename: `babel.config.js`
module.exports = {
// https://github.com/vuejs/vue-cli/tree/master/packages/@vue/babel-preset-app
presets: ['@vue/cli-plugin-babel/preset'],
}
**Environment**
System:
OS: Linux 5.3 Ubuntu 18.04.4 LTS (Bionic Beaver)
Binaries:
Node: 12.16.2 - /usr/bin/node <\-- Only working with v12. if 14.0.0 or 13.x.x
is installed its not working
Yarn: 1.22.4 - /usr/bin/yarn
npm: 6.14.4 - /usr/bin/npm
npmPackages:
babel-core: 7.0.0-bridge.0 => 7.0.0-bridge.0
babel-eslint: 10.1.x => 10.1.0
eslint: 6.8.x => 6.8.0
|
## Feature Request
**Is your feature request related to a problem? Please describe.**
I spoke with @hzoo and one thing we realized is that it's currently very
difficult to determine if a site is using Babel or not.
**Describe the solution you'd like**
I see two solutions:
1. **Prepend the AST to have a`__babelVersion` global variable**. This is the most intuitive and simple solution. Simply make this string variable the first thing to output to the AST so that someone can go into the console of their browser and type `__babelVersion` to get something like `7.0.0-beta49`. **Drawbacks:** bloating the AST and adding a global variable is not exactly desirable.
2. **Create a plugin for a version string**. This fits into the more traditional model of "everything is a plugin first" approach and sort of gates this as a feature. There is also no global variable so it's still searchable via something like BigQuery without having to pollute the global scope. **Drawbacks:** plugins require opt-in (unless we auto-include this plugin along with `babel-core`) and it's really only useful for the Babel team. It won't be nearly as transparent to the end user for their own debugging purposes, and isn't nearly as easy for our own purposes to determine if Babel is in use.
**Describe alternatives you've considered**
Currently you can determine Babel through some convoluted mechanisms of
searching for particular strings in the outputted code.
**Teachability, Documentation, Adoption, Migration Strategy**
As mentioned above, for end users, solution 1 is as simple as typing out
`__babelVersion` into the console. For solution 2, it's more about being able
to grep in the output for a babel version string so people can see it is in
use. Nothing really too complicated here.
| 0 |
* VSCode Version:0.10.11
* OS Version: Windows 10, Mac OSX El Captain
Hi, I'm developing console-wrapper , that is an extension for javascript
console.log (other languages support will be added soon) and I need some
access for clipboard content in Extensions API. I think this methods should be
enough for most of cases:
* vscode.clipboard.getContent()
* vscode.clipboard.setContent()
Some event handlers should be useful, too, like:
-vscode.clipboard.beforeContentLoad()
-vscode.clipboard.onContentLoad()
-vscode.clipboard.onContentLoaded()
Steps for the extension:
* user copy some text;
* when ctrl+shift+q text is wrapped with console.log and inserted at below line.
hugs,
|
Support writing (and maybe reading) the system clipboard.
Why I need it: I want to write an extension that will take the contents of the
current editor, modify it (by escaping < and >) and then copy that modified
text to the clipboard.
| 1 |
## 🐛 Bug
2020-02-12 01:34:22,801 copying
C:\Users\1025289\AppData\Local\Temp\2\tmp5d0w7nip to cache at
C:\Users\1025289.flair\models\en-pos-ontonotes-fast-v0.4.pt
2020-02-12 01:34:22,973 removing temp file
C:\Users\1025289\AppData\Local\Temp\2\tmp5d0w7nip
2020-02-12 01:34:22,988 loading file C:\Users\1025289.flair\models\en-pos-
ontonotes-fast-v0.4.pt
Traceback (most recent call last):
File "fmain.py", line 16, in
main()
File "fmain.py", line 4, in main
intent_obj = GET_INTENT()
File "C:\Users\1025289\Desktop\intent\get_intent.py", line 10, in **init**
super(). **init** (b_preprocess_query=b_preprocess_query)
File "C:\Users\1025289\Desktop\intent\model_flair.py", line 24, in **init**
self._load_flair_model(flair_model)
File "C:\Users\1025289\Desktop\intent\model_flair.py", line 30, in
_load_flair_model
self._seq_tag = SequenceTagger.load(flair_model)
File "C:\Users\1025289\AppData\Local\Programs\Python\Python38\lib\site-
packages\flair\nn.py", line 86, in load
state = torch.load(f, map_location=flair.device)
File "C:\Users\1025289\AppData\Local\Programs\Python\Python38\lib\site-
packages\torch\serialization.py", line 529, in load
return _legacy_load(opened_file, map_location, pickle_module,
**pickle_load_args)
File "C:\Users\1025289\AppData\Local\Programs\Python\Python38\lib\site-
packages\torch\serialization.py", line 692, in _legacy_load
magic_number = pickle_module.load(f, **pickle_load_args)
TypeError: file must have 'read', 'readinto' and 'readline' attributes
## To Reproduce
## Environment
* PyTorch Version (e.g., 1.0):1.4
* OS (e.g., Linux): Windows 10
* How you installed PyTorch (`conda`, `pip`, source):pip
* Python version: 3.81 x64
* CUDA/cuDNN version: No
* GPU models and configuration:No
* Any other relevant information:
|
## 🐛 Bug
Error text:
======================================================================
ERROR: test_serialization_filelike_api_requirements (__main__.TestTorch)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test_torch.py", line 4446, in test_serialization_filelike_api_requirements
_ = torch.load(filemock)
File "C:\Users\circleci\project\build\win_tmp\build\torch\serialization.py", line 590, in load
return _legacy_load(opened_file, map_location, pickle_module, **pickle_load_args)
File "C:\Users\circleci\project\build\win_tmp\build\torch\serialization.py", line 754, in _legacy_load
magic_number = pickle_module.load(f, **pickle_load_args)
TypeError: file must have 'read', 'readinto' and 'readline' attributes
======================================================================
ERROR: test_serialization_filelike_missing_attrs (__main__.TestTorch)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test_torch.py", line 4473, in test_serialization_filelike_missing_attrs
self._test_serialization_filelike(to_serialize, mock, desc)
File "test_torch.py", line 4458, in _test_serialization_filelike
b = torch.load(data)
File "C:\Users\circleci\project\build\win_tmp\build\torch\serialization.py", line 590, in load
return _legacy_load(opened_file, map_location, pickle_module, **pickle_load_args)
File "C:\Users\circleci\project\build\win_tmp\build\torch\serialization.py", line 754, in _legacy_load
magic_number = pickle_module.load(f, **pickle_load_args)
TypeError: file must have 'read', 'readinto' and 'readline' attributes
======================================================================
ERROR: test_serialization_filelike_stress (__main__.TestTorch)
----------------------------------------------------------------------
Traceback (most recent call last):
File "test_torch.py", line 4479, in test_serialization_filelike_stress
self._test_serialization_filelike(a, lambda x: FilelikeMock(x, has_readinto=False),
File "test_torch.py", line 4458, in _test_serialization_filelike
b = torch.load(data)
File "C:\Users\circleci\project\build\win_tmp\build\torch\serialization.py", line 590, in load
return _legacy_load(opened_file, map_location, pickle_module, **pickle_load_args)
File "C:\Users\circleci\project\build\win_tmp\build\torch\serialization.py", line 754, in _legacy_load
magic_number = pickle_module.load(f, **pickle_load_args)
TypeError: file must have 'read', 'readinto' and 'readline' attributes
----------------------------------------------------------------------
Ran 3620 tests in 103.071s
## To Reproduce
Steps to reproduce the behavior:
1. python test_torch.py
## Expected behavior
## Environment
Please copy and paste the output from our
environment collection script
(or fill out the checklist below manually).
You can get the script and run it with:
wget https://raw.githubusercontent.com/pytorch/pytorch/master/torch/utils/collect_env.py
# For security purposes, please check the contents of collect_env.py before running it.
python collect_env.py
* PyTorch Version (e.g., 1.0): e4db0a5
* OS (e.g., Linux): Windows
* How you installed PyTorch (`conda`, `pip`, source): source
* Build command you used (if compiling from source): python setup.py build
* Python version: 3.8
* CUDA/cuDNN version: N/A
* GPU models and configuration: N/A
* Any other relevant information:
## Additional context
cc @ezyang @gchanan @zou3519 @peterjc123 @suo
| 1 |
I installed pytorch, and my cuda version is upto date. But when I run my
command, I get the following error:
My system:
Windows 10
NVIDIA GeForce GTX 960M
Python 3.6(Anaconda)
PyTorch 1.1.0
CUDA 10
`import torch
import torch.nn as nn
from data_util import config
use_cuda = config.use_gpu and torch.cuda.is_available()
def init_lstm_wt(lstm):
for names in lstm. _all_weights:
for name in names:
if name.startswith('weight_'):
wt = getattr(lstm, name)
wt.data.uniform_(-config.rand_unif_init_mag, config.rand_unif_init_mag)
elif name.startswith('bias_'):
# set forget bias to 1
bias = getattr(lstm, name)
n = bias.size(0)
start, end = n // 4, n // 2
bias.data.fill_(0.)
bias.data[start:end].fill_(1.)
def init_wt_normal(wt):
wt.data.normal_(std=config.trunc_norm_init_std)
class Encoder(nn.Module):
def **init** (self):
super(Encoder, self). **init** ()
self.embedding = nn.Embedding(config.vocab_size, config.emb_dim)
init_wt_normal(self.embedding.weight)
self.lstm = nn.LSTM(config.emb_dim, config.hidden_dim, num_layers=1,
batch_first=True, bidirectional=True)
init_lstm_wt(self.lstm)
self.W_h = nn.Linear(config.hidden_dim * 2, config.hidden_dim * 2, bias=False)
class Decoder(nn.Module):
def **init** (self):
super(Decoder, self). **init** ()
self.embedding = nn.Embedding(config.vocab_size, config.emb_dim)
init_wt_normal(self.embedding.weight)
class Model(object):
def **init** (self, model_file_path=None, is_eval=False):
encoder = Encoder()
decoder = Decoder()
if use_cuda:
encoder = encoder.cuda()
decoder = decoder.cuda()
model=Model()` `Traceback (most recent call last):
File "G:/public_workspace/pointer_summarizer-pytorch-2.7/data_util/test4.py",
line 41, in
model=Model()
File "G:/public_workspace/pointer_summarizer-pytorch-2.7/data_util/test4.py",
line 39, in **init**
encoder = encoder.cuda()
File "D:\soft\anaconda\lib\site-packages\torch\nn\modules\module.py", line
266, in cuda
return self._apply(lambda t: t.cuda(device))
File "D:\soft\anaconda\lib\site-packages\torch\nn\modules\module.py", line
194, in _apply
module. _apply(fn)
File "D:\soft\anaconda\lib\site-packages\torch\nn\modules\module.py", line
200, in _apply
param.data = fn(param.data)
File "D:\soft\anaconda\lib\site-packages\torch\nn\modules\module.py", line
266, in
return self. _apply(lambda t: t.cuda(device))
File "D:\soft\anaconda\lib\site-packages\torch\cuda_ _init__.py", line 176, in
_lazy_init
torch. _C. _cuda_init()
RuntimeError: CUDA error: unknown error`I annotated a part ,and the error
disappeared`import torch
import torch.nn as nn
from data_util import config
use_cuda = config.use_gpu and torch.cuda.is_available()
def init_lstm_wt(lstm):
for names in lstm. _all_weights:
for name in names:
if name.startswith('weight_'):
wt = getattr(lstm, name)
wt.data.uniform_(-config.rand_unif_init_mag, config.rand_unif_init_mag)
elif name.startswith('bias_'):
# set forget bias to 1
bias = getattr(lstm, name)
n = bias.size(0)
start, end = n // 4, n // 2
bias.data.fill_(0.)
bias.data[start:end].fill(1.)
def init_wt_normal(wt):
wt.data.normal(std=config.trunc_norm_init_std)
class Encoder(nn.Module):
def **init** (self):
super(Encoder, self). **init** ()
self.embedding = nn.Embedding(config.vocab_size, config.emb_dim)
init_wt_normal(self.embedding.weight)
# self.lstm = nn.LSTM(config.emb_dim, config.hidden_dim, num_layers=1,
batch_first=True, bidirectional=True)
# init_lstm_wt(self.lstm)
# self.W_h = nn.Linear(config.hidden_dim * 2, config.hidden_dim * 2,
bias=False)__
class Decoder(nn.Module):
def **init** (self):
super(Decoder, self). **init** ()
self.embedding = nn.Embedding(config.vocab_size, config.emb_dim)
init_wt_normal(self.embedding.weight)
class Model(object):
def **init** (self, model_file_path=None, is_eval=False):
encoder = Encoder()
decoder = Decoder()
if use_cuda:
encoder = encoder.cuda()
decoder = decoder.cuda()
model=Model()`
|
I am unable to use pytorch with CUDA despite having installed it.
OS: Windows 10
Pytorch Version: 1.1.0
CUDA Version: 10.0
I get the following error. Any help would be appreciated.

| 1 |
When single layer network math is described you have following:
"""If we write that out as equations, we get:"""
after that comes picture with weight multiplications, but there should be
W_1,1_x_1 + W_1,2_x_2 + W_1,3_x_3 + b_1
etc..
Instead there written:
W_1,1_x_1 + W_1,2_x_1 + W_1,3_x_1 + b_1
etc..
Please correct me if I am mistaken.
|
The following image on the Beginner's tutorial page is wrong:

Here is a corrected version:

| 1 |
responsiveness goes south when one of the cells is very long
Notice there is no scrollbar. the entire screen is resized
maybe overflow:hidden / text-overflow:ellipsis; could do the trick

|
Using `.table-reponsive` only works on the smallest screen size.
Solution 1: Use `@grid-float-breakpoint` so it becomes responsive when the
navbar does (currently what we do in projects)
Solution 2: Use another variable that defaults to `@screen-sm-max` that can be
overwritten in another less file
| 1 |
**Oliver Drotbohm** opened **SPR-8336** and commented
Currently `AnnotationTypeFilter` invokes the constructor of
`AbstractTypeHierarchyTraversingFilter` setting `considerInterfaces` to
`false`. This probably makes sense in most cases. However there might be
`BeanDefinitionParser` implementations that declare a `FactoryBean` creating a
proxy for discovered interfaces. So it would be cool if we could add a
constructor to pass in a `boolean` to enable interface discovery as well.
* * *
**Affects:** 3.0.5, 3.1 M1
**Attachments:**
* filter.patch ( _3.38 kB_ )
* mylyn-context.zip ( _1.26 kB_ )
**Issue Links:**
* DATACMNS-37 Support annotation based declaration of repository interfaces ( _ **"depends on"**_ )
* #16341 Metadata reading should never use ASM for java.* and javax.* types (in particular on JDK 8)
**Referenced from:** commits spring-projects/spring-data-commons@`4a70506`
|
**Rodrigo Urubatan Ferreira Jardim** opened **SPR-3486** and commented
I think some bean definitions are just configuration, as the Data Source,
Transaction Manager, Mail Server, ...
but most of then are the application code, and not configuration.
for the seccond case, I think it would be very easy and clean, to register it
on the application with annotations, because it would use a lot less code than
the XML approach, and this beans registrations (like my application DAOs, or
my Spring MVC controllers), does not change during the life time of any
application.
for this to be reached it would be necessary to scan the classpath for the
annotated classes.
I have wrote a litle bouch of classes that make the application context behave
exaclty this way, enabling it to use bean registration by annotations.
please consider including it in spring framework as an optional extension.
I`m not sure the application way I did it (creating another application
context class) is the best one, but it is an idea of implementation for it :D
the code I have wrote is atacched.
what it does right now is:
1. `@Bean` \- equals to <bean>
* autoWire (NO, BY_NAME, BY_TYPE, INHERITED)
* dependencyCheck
* destroyMethod
* factoryMethod
* initMethod
* lazy
* name
* scope (APPLICATION, REQUEST, SESSION) - short cut to aop:scope
* singleton
2. `@UrlMapping` \- attaches the bean to a URL using an bean factor post processor (AnnotationHandlerMaping)
3. `@UrlMappings` \- enables multiple UrlMappings per bean
4. `@Property`
5. `@ConstructorArgs`
in the code, there is an example applicationContext.xml that enables
WebServices using JSR 181 webservices through xfire/spring integration, and
has already a propertyPlaceholderConfigurer.
the annotation scan, for now scans every directory/jar in the classpath, that
contains a file names to.properties in the root, and the
propertyPlaceholderConfigurer uses this files too.
with this jar, I was able to define only a datasource, transaction
manager,sessionFactory,tx:annotation-driven,and a defaultViewResolver
and write all the rest of my application without touching in a XML file.
this way, all I need to know about my beans was in the bean code.
the installation of it is preaty clean too:
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.4"
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
<display-name>TO - Novo Site</display-name>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>
<context-param>
<param-name>contextClass</param-name>
<param-value>
br.com.techoffice.spring.web.TOAnnotationXmlWebApplicationContext
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
<filter>
<filter-name>requestContext</filter-name>
<filter-class>
org.springframework.web.filter.RequestContextFilter
</filter-class>
</filter>
<filter-mapping>
<filter-name>requestContext</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>*.to</url-pattern>
</servlet-mapping>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/web/*</url-pattern>
</servlet-mapping>
</web-app>
a blank dispatcher-servlet.xml (does this is really needed? what if I want all
my configuration to be application-wide, I really need to create a xml file to
each servlet, or in this case to the only servlet I have?)
again, please consider it as an optional module for spring framework.
and thanks for the great framework, it has saved a few of my projects in
clients in the last 2 years.
* * *
**Issue Links:**
* #6680 Enable the definition of beans in the application context using annotations instead of XML ( _ **"duplicates"**_ )
| 0 |
by **alex.gaynor** :
Trying to load a PKCS8 DSA key fails with the error:
ERROR: asn1.StructuralError{Msg:"tags don't match (16 vs {class:0 tag:13 length:45 isCompound:true}) {optional:false explicit:false application:false defaultValue:<nil> tag:<nil> stringType:0 set:false omitEmpty:false} pkcs8 @2"}
An example of such a key is available at
https://raw.githubusercontent.com/pyca/cryptography/master/vectors/cryptography_vectors/asymmetric/PKCS8/unenc-dsa-pkcs8.pem
It can be successfully parsed by OpenSSL:
$ cat ./vectors/cryptography_vectors/asymmetric/PKCS8/unenc-dsa-pkcs8.pem | openssl
pkcs8 -nocrypt | openssl dsa -text -noout
read DSA key
Private-Key: (1024 bit)
priv:
00:a5:35:a8:e1:d0:d9:1b:ea:fc:8b:ee:1d:9b:2a:
3a:8d:e3:31:12:03
(continued)
OpenSSL's documentation claims that the specification for this can actually be found in
PKCS#11 (https://www.openssl.org/docs/apps/pkcs8.html#STANDARDS)
|
In http://play.golang.org/p/RoelsmSVrI, this statement yields two errors:
_ = []byte{"foo"}
// cannot convert "foo" to type byte
// cannot use "foo" (type string) as type byte in array element
One seems like plenty.
FWIW, a similar pair of errors is emitted for other types T in []T{"foo"}.
| 0 |
This was exposed by #8200 and "fixed" by #8218, but the underlying problem
that caused the segfault to randomly show up and disappear when rebuilding
julia is probably still exists.
To summarize the thread in #8200, there's a bug that causes a segfault.
However, it only affects some builds. Rebuilding can make the bug appear or
disappear, and running with `make -j n`, for different `n`, seems to affect
the probability of a bad build.
cc @StefanKarpinski , since he seemed interested in this.
|
Based on the discussion here, we need to investigate if `sparse()` can be sped
up.
https://groups.google.com/forum/#!topic/julia-users/X8Jca4SZMxo
Potential opportunities include experimenting with different ways of sorting
inputs, avoiding the use of the generic `combine` function, `@inbounds`, etc.
The following example takes 1.7 seconds for me:
s = sprand(70000,70000,0.001)
| 0 |
Seen a few usages of this already:
<my-custom-element />
HTML5 spec says this is opening tag (previous versions handled it differently)
and thus this fails silently and swallows up any following DOM. Compiler
should probably warn / throw here if possible.
|
Advantages:
* We could use it in WebWorker, Server side, or with native renderers.
* Proper camel casing. (We can get rid of `inner-html` vs `innerHTML`) #4923
* Errors have proper line numbers.
* We can rely on attribute order (not sure if it would be relevant)
* We could support self closing tags `<name />` for custom elements
* No need to ship parser when doing offline compilation.
/cc: @pkozlowski-opensource, @gdi2290, @tbosch
| 1 |
This seemed to have started recently, but I'm not sure which version of
electron exactly. I've reproduced it on 0.36.4 and 0.36.5.
When sending an object over ipc from the main process, additional references
to the same object end up being null. The first 'instance' of that property on
`state` makes it to the client, but any additional references end up null.
const state = {}
const object = { 'prop': 1 }
state.firstReference = object
state.brokenReference = object // brokenReference ends up null on the client
win.webContents.on('did-finish-load', function() {
console.log('sending state', state)
win.webContents.send('update', state)
});
Here's a repo that reproduces this:
https://github.com/bmathews/electron-ipc-bug
|
I came across a very interesting scenario. There was some missing information
in a collection that I sent between two processes.
Assume the scenario, Renderer and Process.
If I have an array that contains multiple entries of the **same object
reference** , only the **first object** will be provided to the receiving side
of the message -- the other entries will be `null`.
#### Renderer
import {ipcRenderer} from 'electron';
var theObject = {foo: 'bar'};
var theList = [theObject, theObject, theObject];
ipcRenderer.send('test', theList);
#### Main Process
import {ipcMain} from 'electron';
ipcMain.on('test', (evt, data) => {
console.log(data);
// this will output [{foo: 'bar'}, null, null];
});
* * *
It is only when the object references are distinct from each other does the
information remain intact. For example, If we do
#### Renderer
import {ipcRenderer} from 'electron';
var theObject = {foo: 'bar'};
// create new object references for the other two entries, such that all entries are unique by reference
var theList = [theObject, {...theObject}, {...theObject}];
ipcRenderer.send('test', theList);
#### Main Process
import {ipcMain} from 'electron';
ipcMain.on('test', (evt, data) => {
console.log(data);
// this will output [{foo: 'bar'}, {foo: 'bar'}, {foo: 'bar'}];
});
Then the proper information will be received.
I'm not sure if this is a problem with Chromium, and how virtual address space
between threads is propagated when sending information between two processes,
but clearly a collection of the same object references struggles to be passed
around unless they are all distinct references.
| 1 |
### Preflight Checklist
* I have read the Contributing Guidelines for this project.
* I agree to follow the Code of Conduct that this project adheres to.
* I have searched the issue tracker for a feature request that matches the one I want to file, without success.
### Electron Version
12.0.0
### What operating system are you using?
Other Linux
### Operating System Version
Centos 8
### What arch are you using?
x64
### Last Known Working Electron version
_No response_
### Expected Behavior
`win.webContents.print` should print a non blank page when configured in
silent mode in linux.
### Actual Behavior
`win.webContents.print` doesn't print anything.
### Testcase Gist URL
https://gist.github.com/tomaspiaggio/0c0d259d88256b81794f6f1430b3e260
### Additional Information
I've encountered this problem both on Ubuntu 18.04 and Centos 8. It works both
on Windows 10 and macOS 10.15.7.
The printer I'm using is a Brother QL-800 (thermal label printer, 62mm x
100mm). The OSs have the correct drivers, and the printer is set to default.
I've tried setting the device name manually on the print options
unsuccessfully.
**What's the problem?**
The `win.webContents.print` does not work on linux when configured on silent
mode.
I've replicated the problem on two other printers (another QL-800, and a
QL-700)
**Why do I think that this is an electron bug?**
* When I set silent to false, it works
* Printing test prints directly on the printer works fine
* Print to pdf works
* `window.print` works
* behaviour changes between linus and windows/macos
On previous versions (11.1.1), the printer inconsistently printed blank pages,
which threw me off even more than this.
Please do tell me if I'm doing anything wrong, or if you can't replicate the
problem.
Thank you in advance.
|
Hi, I just upgraded to electron 3.0 and noticed that my applications windows
controls are no longer there. I use titlebarStyle: 'hiddenInset' so that I can
have the native OS's buttons as my windows controls, and it worked great until
I upgraded to 3.0
**Expected Behavior**
The macOS buttons should be shown on the top left like in previous versions
**Actual behavior**
The buttons are not there. Though, if you click where the buttons should be
the actions work, and if you fullscreen the application and then take it out
of fullscreen the buttons start to show.
**To Reproduce**
By just adding the titleBarStyle option, or use the code below.
this.mainWindow = new BrowserWindow({
show: false, // .show() once 'ready-to-show'
backgroundColor: '#fff',
titleBarStyle: 'hiddenInset',
});
| 0 |
connect to the database `sharding_db`,which is a logical postgresql
database(use sharding-proxy for database-spliting). when I am using some
database client-tools,such as navicat,pg_dump.
It always complain that I don't specify client-encoding, even I indeed do it
already:
root@a15d5aac4a11:/var/lib/postgresql/data# pg_dump -E UTF8 -U postgres -d sharding_db -h 192.168.10.53 -p 13308 > test.sql
pg_dump: [archiver (db)] connection to database "sharding_db" failed: ERROR: Null charset name
## Logs
I run sharding-proxy as a docker container, the logs digest as below:
[ERROR] 2021-12-07 10:07:12.535 [epollEventLoopGroup-3-7] o.a.s.p.f.n.FrontendChannelInboundHandler - Exception occur:
java.lang.IllegalArgumentException: Null charset name
at java.nio.charset.Charset.lookup(Charset.java:457)
at java.nio.charset.Charset.forName(Charset.java:528)
at org.apache.shardingsphere.proxy.frontend.postgresql.authentication.PostgreSQLAuthenticationEngine.processStartupMessage(PostgreSQLAuthenticationEngine.java:85)
at org.apache.shardingsphere.proxy.frontend.postgresql.authentication.PostgreSQLAuthenticationEngine.authenticate(PostgreSQLAuthenticationEngine.java:78)
at org.apache.shardingsphere.proxy.frontend.netty.FrontendChannelInboundHandler.authenticate(FrontendChannelInboundHandler.java:80)
at org.apache.shardingsphere.proxy.frontend.netty.FrontendChannelInboundHandler.channelRead(FrontendChannelInboundHandler.java:72)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:324)
at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:296)
at io.netty.handler.codec.ByteToMessageCodec.channelRead(ByteToMessageCodec.java:103)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:357)
at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1410)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:379)
at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:365)
at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:919)
at io.netty.channel.epoll.AbstractEpollStreamChannel$EpollStreamUnsafe.epollInReady(AbstractEpollStreamChannel.java:795)
at io.netty.channel.epoll.EpollEventLoop.processReady(EpollEventLoop.java:480)
at io.netty.channel.epoll.EpollEventLoop.run(EpollEventLoop.java:378)
at io.netty.util.concurrent.SingleThreadEventExecutor$4.run(SingleThreadEventExecutor.java:986)
at io.netty.util.internal.ThreadExecutorMap$2.run(ThreadExecutorMap.java:74)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
at java.lang.Thread.run(Thread.java:748)
|
There are 30 connections, two instances in total
Problem Description:
Multiple instances refresh the data source, reload the data source, and create
a link. Before this process, first check the old data source and new data
source, including fragment configuration; CLose new and old data sources have
interactive data source links ,Use new data source list
Before refresh
There are 60 connections
After refresh
There are 90 connections
org.apache.shardingsphere.shardingjdbc.jdbc.adapter.AbstractDataSourceAdapter#close(java.util.Collection<java.lang.String>)

Database link exception after closing
| 0 |
Hey Bootstrapers. Congrats on the release. BS3 is awesome.
I asked this on the BS3 pull request but didn't get a reply, but it's the one
thing that is bothering me when using BS3:
Shouldn't `.col-sm-*` be named `.col-md-*` instead?
`.col-12` — mobile first, so you can say it affects **small** screens
`.col-sm-12` — **medium** screens only
`.col-lg-12` — **large** screens only
Thanks in advance for clarifying this!
~~Since I'm bothering you already, I had another 3-part question:~~
~~Why doesn't col-push/pul/offset work for any screen size? Why not favor one
instead of keeping both push and offset? Would it make sense to be able to
target a screen size like`.col-lg-push-2`?~~
|
With Bootstrap 3 RC1, the `sm` keyword is used in an inconsistent manner. When
referring to column sizes, it means "tablet sized." When referring to
hide/show responsive classes it means "phone sized." My recommendation would
be to rename all of the `col-sm-X` classes to be `col-md-X` classes.
This would solve the inconsistency while still advocating "mobile-first" and
leaving the mobile columns un-prefixed.
| 1 |
Im populating several Text Fields from localstorage using initialValue. As
default im only able to see first row, but it will expand as soon as im start
typing.
Is there any way i can enable full height as default?

I have tried the following properties.
multiLine={true}
fullWidth={true}
rowsMax={10}
rows={5}
* Material-ui@0.16.4
* React@15.4.2
* Browser: Chrome Versjon 56.0.2924.87
|
### Problem description
When wanting to use multiline text field (2 or more) inside a nested list
item, they start by displaying only one text-input line. As soon as one
character has been typed in, it will expand the rows to the set row value, and
stay that way until the dom is flushed or reloaded.
I am using Clojurescript to compile to javascript, but I was able to reproduce
this behaviour in babel/jsx.
### Steps to reproduce
This simple code should reproduce this behaviour:
import React, {Component} from 'react';
import {List, ListItem} from 'material-ui/List';
import TextField from 'material-ui/TextField';
import getMuiTheme from 'material-ui/styles/getMuiTheme';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
class Main extends Component {
render() {
return (
<MuiThemeProvider muiTheme={getMuiTheme()}>
<div>
<TextField
rows={2}
multiLine={true}
hintText="Expands immeadiately"
/>
<list>
<ListItem primaryText="Nested text field here!"
style={{width: '250px',
backgroundColor: 'red',}}
nestedItems={[<ListItem
style={{width: '250px',
backgroundColor: '#E1F5FE'}}
disabled={true}>
<TextField
rows={2}
multiLine={true}
hintText="Waits for input to expand"
/>
</ListItem>]}></ListItem>
<ListItem
primaryText="disabled"
disabled={true}
style={{width: '250px',
backgroundColor: 'red',}}>
</ListItem>
</list>
</div>
</MuiThemeProvider>
);
}
}
export default Main;
### Versions
* Material-UI: 0.15.4
* React: 15.3.1
* Browser: Google Chrome
| 1 |
Hi,
When a modal is shown on a smaller device resolution (iPhone) and it contains
more content in the body than can fit on screen, the footer of the modal is
cut off from view and unreachable.
iPhone dimensions:
http://puu.sh/1sHaG
http://puu.sh/1sHd2
Desktop dimensions:
http://puu.sh/1sHdz
I would assume that the height of the modal body is suppose to adjust so that
the header and footer are always shown?
Thanks.
|
As it says. Thanks for all your love, guys!
| 1 |
I'm seeing webpack in watcher mode writing truncated files. The number of
bytes seems to always be either 1682 or 0 - not sure if that's significant
somehow. When its 1682 bytes, it cuts off often in the middle of a variable.
It seems like it just aborts writing right in the middle of things. When this
happens, I see the webpack callback being called many times in a row without
any errors or warnings, which my code takes to be a success. Looks like the
callback is being called somewhere around 40 times repeatedly, even though I
only made one change.
It seems to happen when I try to read from the bundle while its trying to
write. In those cases, it would make sense to me if the file wasn't written at
all, or if the system returned an error. But when no error is being given
back, and the file is partially written - that doesn't make sense to me.
Sorry I don't have more good info, its a weird intermittent problem, and I
don't have time to futz with things right now.
|
Hey fellas,
I've been using webpack for a few months now, and I had an idea for an
optimization plugin. Before I invested a lot of time and energy figuring out
how to write it, I wanted to run the idea by you guys to make sure it was
sound and hadn't been attempted (and discarded) before.
Basically, I'm wondering if webpack can construct a global strings hash table,
insert all strings that are used above a certain threshold, then replace
references to those strings with hash table lookups.
Say webpack generates these lines of code right now (in multiple modules that
are eventually output to the same bundle):
`var some_var = "some string";`
`var some_other_var = "some string";`
`var some_other_other_var = "some string";`
Could it instead generate this code:
`var strings = { a: "some string" };`
`var some_var = strings.a`
`var some_other_var = strings.a`
`var some_other_other_var = strings.a`
Hoisting all strings seems like it wouldn't be wise, so I was planning on
configuration options for frequency and length to determine what strings were
hoisted to the lookup table.
So my questions before I dive in and get to work on something:
1. Is this possible with the API webpack exposes to plugins?
2. Has this been attempted and rejected before?
Thanks in advance!
| 0 |
Black screen after first click on close button. Application closes after
second click on close button.
Reload works fine.


electron-prebuilt 0.36.6
electron-rebuild 1.1.2
os windows 8.1
|
[7136:0129/081452:FATAL:scoped_handle.cc(44)] Check failed: false.
Backtrace:
(No symbol) [0x00C8D517]
(No symbol) [0x00C87A57]
(No symbol) [0x00CBAEBF]
(No symbol) [0x00CBAF01]
(No symbol) [0x00CB100B]
(No symbol) [0x00CB0A0B]
(No symbol) [0x00C33318]
(No symbol) [0x00C334E7]
(No symbol) [0x00BDEF65]
(No symbol) [0x00BDF273]
v8::TypeSwitch::match [0x5A01A96E+651326]
v8::Locker::IsLocked [0x59F09D1C+804588]
v8::Locker::IsLocked [0x59F0C9CD+816029]
Steps to reproduce
$ npm install -g iron-node;
$ iron-node;
#press Ctrl+w
Just tried to reproduce but this happens only in distributed version.
Windows 10 . Electron 0.36.5.
ref.: s-a/iron-node#86
| 1 |
**I'm submitting a ...** (check one with "x")
[X] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
When setting the input type via a property the resulting value of a
FormControl/FormGroup after input change is not correct
e.g.
inputType = 'number';
formControl = new FormControl(789);
<input [type]="inputType" [formControl]="formControl">
After updating the value in the input field the value of the formControl is a
string and NOT a number.
When setting via type="number" the value is correct (a number).
**Expected behavior**
To get the value of the form control in the correct type
**Minimal reproduction of the problem with instructions**
In this plunker the wrong behaviour is shown:
https://plnkr.co/edit/i9Spc10kUCIwtGYx8Vkn?p=preview
**Please tell us about your environment:**
* **Angular version:** 4.1.1
* **Browser:** all
* **Language:** TypeScript 2.2
|
in creating a options list that allows the user to change different settings i
found a problem with the type checkbox . take this component
(function(app){
app.testing=ng.core.Component({
selector:"testing",
template:"<input type='checkbox' [(ngModel)]='testing'/>"+
"<template ngFor #item [ngForOf]='list'>"+
"<input [type]='item.type' [(ngModel)]='item.value'/>"+
"</template>"
}).Class({
constructor:[function(){
this.testing=true;
this.list=[
{type:"checkbox",value:true},
{type:"text",value:"hello world"}
];
}],
});
})(window.app||(window.app={}));
because of the ngFor loop combining with the dynamic setting of inputs and
their types ngModel does not work on the second checkbox although it does on
the first which is not dynamically set. im guessing this is a problem with how
ngModel determines that the input is type checkbox. a example of this can be
found here
sorry to those of you who work in typescript i was not able to use typescript
so it is in plain es5. i hope you can still interpret what its meaning and
maybe someone can translate it to typescript.
| 1 |
### Version
2.6.14
### Reproduction link
github.com
### Steps to reproduce
Just follow the steps as mentioned in the repo.
### What is expected?
Browser based template compiler should report error about wrong template
syntax.
### What is actually happening?
100% CPU usage with OS crash
* * *
This happens on Windows with CRLF line endings. The template compiler just
gets stuck in an infinite loop in the browser.
|
### Version
2.5.17
### Reproduction link
https://codesandbox.io/s/6j7kz64znr
### Steps to reproduce
When using two tags like and in a template of a single file component, with
some white space in between.
Examples (as in the link)
<div>
<br />
<a href="https://vuejs.org/">Vue.js</a>
<span>is nice</span>.
</div>
results in `Vue.jsis nice.'
### What is expected?
Expected is the regular handling of white space in browsers that remove all,
but one white space.
### What is actually happening?
The last space is removed.
* * *
https://codepen.io/anon/pen/RqEoOr shows the regular handling of this piece of
html in a browser (without other css options set).
The problem was noticed when trying to translate text with vue-gettext, where
is poses an extra challenge, see Polyconseil/vue-gettext#80
| 0 |
### Describe the bug
Looks like latest sphinx shows many warnings on generate documentation.
### To Reproduce
`sphinx-build -n -T -b html doc/build build/sphinx/html`
### Error
Willaadd in next comment.
### Versions
* OS: Linux x86/64
* Python: 3.8.13
* SQLAlchemy: 1.4.35
* Database: N/A
* DBAPI (eg: psycopg, cx_oracle, mysqlclient): N/A
### Additional context
list of modules with versions installed in build env
Package Version
----------------------------- -----------------
alabaster 0.7.12
attrs 21.4.0
Babel 2.9.1
build 0.7.0
changelog 0.5.7
charset-normalizer 2.0.12
codespell 2.1.0
cycler 0.11.0
distro 1.7.0
docutils 0.17.1
execnet 1.9.0
extras 1.0.0
fixtures 3.0.0
fonttools 4.32.0
gpg 1.17.1-unknown
greenlet 1.1.2
idna 3.3
imagesize 1.3.0
importlib-metadata 4.11.3
iniconfig 1.1.1
Jinja2 3.1.1
kiwisolver 1.3.2
libcomps 0.1.18
libsass 0.21.0
lit 14.0.1
Mako 1.2.0.dev0
MarkupSafe 2.1.1
matplotlib 3.5.1
meson 0.62.0
numpy 1.22.3
olefile 0.46
packaging 21.3
pbr 5.8.1
pep517 0.12.0
Pillow 9.1.0
pip 22.0.4
pluggy 1.0.0
py 1.11.0
Pygments 2.11.2
PyGObject 3.42.0
pyparsing 3.0.8
pytest 7.1.1
pytest-forked 1.4.0
pytest-xdist 2.5.0
python-dateutil 2.8.2
pytz 2022.1
requests 2.27.1
rpm 4.17.0
setuptools 62.0.0
six 1.16.0
snowballstemmer 2.2.0
Sphinx 4.5.0.dev20220404
sphinx-copybutton 0.4.0
sphinx-paramlinks 0.5.2
sphinxcontrib-applehelp 1.0.2.dev20220410
sphinxcontrib-devhelp 1.0.2.dev20220410
sphinxcontrib-htmlhelp 2.0.0
sphinxcontrib-jsmath 1.0.1.dev20220410
sphinxcontrib-qthelp 1.0.3.dev20220410
sphinxcontrib-serializinghtml 1.1.5
testtools 2.5.0
tomli 2.0.1
urllib3 1.26.9
wheel 0.37.1
zipp 3.8.0
zzzeeksphinx 1.3.3
|
### Describe the bug
When reflecting indexes from one table to another in MariaDB, the index
containing Text field can't be created as the retrieved index information in
metadata does not contain the information about 'mysql_length'.
mike-supplied MCVE
from sqlalchemy import Column
from sqlalchemy import create_engine
from sqlalchemy import Index
from sqlalchemy import Integer
from sqlalchemy import MetaData
from sqlalchemy import Table
from sqlalchemy import Text
metadata = MetaData()
test_table = Table(
"test_table",
metadata,
Column("signal_type", Integer(), nullable=False),
Column("signal_data", Text(1 << 18), nullable=False),
Index(
"ix_test_table_0a574",
*["signal_type", "signal_data"],
mysql_length={"signal_data": 256},
)
)
e = create_engine("mysql://scott:tiger@localhost/test", echo=True)
metadata.drop_all(e)
metadata.create_all(e)
new_metadata = MetaData()
reflected_table = Table("test_table", new_metadata,autoload_with=e)
assert list(test_table.indexes)[0].kwargs['mysql_length'] == {"signal_data": 256}
assert list(reflected_table.indexes)[0].kwargs['mysql_length'] == {"signal_data": 256}
* * *
original issue
### To Reproduce
sqlalchemy as sa
def get_engine(db_url):
import logging
logging.getLogger("sqlalchemy").setLevel(logging.ERROR)
engine = sa.create_engine(db_url, isolation_level="READ_UNCOMMITTED")
yield engine
engine.dispose()
def get_metadata(engine) -> sa.MetaData:
metadata_obj = sa.MetaData()
metadata_obj.reflect(bind=engine)
return metadata_obj
def create_indices(engine):
metadata_obj = get_metadata(engine)
old_table = metadata_obj.tables["test_table"]
backup_table = metadata_obj.tables["test_table_backup"]
with engine.connect() as conn:
for index in old_table.indexes:
# the parent table must not be set in the Index constructor beforehand, because the index
# will then be "attached" to the table object and will be created when calling table.create()
print(index)
index.table = None
index._set_parent(backup_table)
index.create(bind=conn)
def create_backup_table(engine, old_table_name: str):
metadata = get_metadata(engine)
old_table = metadata.tables[old_table_name]
# duplicate table without indexes
# we have a reason to do this, belive me
backup_table = sa.Table(
"test_table_backup",
metadata,
*[column.copy() for column in old_table.columns],
)
with engine.connect() as conn:
backup_table.create(conn, checkfirst=True)
return backup_table
def create_old_table(engine):
metadata = get_metadata(engine)
old_table = sa.Table(
"test_table",
metadata,
sa.Column("signal_type", sa.Integer(), nullable=False),
sa.Column("signal_data", sa.Text(1 << 18), nullable=False),
sa.Index(
"ix_test_table_0a574",
*["signal_type", "signal_data"],
mysql_length={"signal_data": 256},
)
)
with engine.connect() as connection:
metadata.create_all(connection)
return old_table
def example(engine):
#cleanup of residual tables from previous test
drop_table = sa.text(f"DROP TABLE IF EXISTS test_table")
engine.execute(drop_table)
drop_table = sa.text(f"DROP TABLE IF EXISTS test_table_backup")
engine.execute(drop_table)
create_old_table(engine)
create_backup_table(engine, "test_table")
create_indices(engine)
if __name__ == "__main__":
example(get_engine("maradb_url"))
### Error
self = <sqlalchemy.engine.base.Connection object at 0x7fdbf37614c0>, dialect = <sqlalchemy.dialects.mysql.mysqldb.MySQLDialect_mysqldb object at 0x7fdbf370b730>
constructor = <bound method DefaultExecutionContext._init_ddl of <class 'sqlalchemy.dialects.mysql.mysqldb.MySQLExecutionContext_mysqldb'>>
statement = 'CREATE INDEX ix_test_table_0a574 ON test_table_backup (signal_type, signal_data)', parameters = (), args = (<sqlalchemy.dialects.mysql.base.MySQLDDLCompiler object at 0x7fdbf375bd30>,)
conn = <sqlalchemy.pool.base._ConnectionFairy object at 0x7fdbf3761be0>, context = <sqlalchemy.dialects.mysql.mysqldb.MySQLExecutionContext_mysqldb object at 0x7fdbf36f3d90>
def _execute_context(
self, dialect, constructor, statement, parameters, *args
):
"""Create an :class:`.ExecutionContext` and execute, returning
a :class:`_engine.ResultProxy`.
"""
try:
try:
conn = self.__connection
except AttributeError:
# escape "except AttributeError" before revalidating
# to prevent misleading stacktraces in Py3K
conn = None
if conn is None:
conn = self._revalidate_connection()
context = constructor(dialect, self, conn, *args)
except BaseException as e:
self._handle_dbapi_exception(
e, util.text_type(statement), parameters, None, None
)
if context.compiled:
context.pre_exec()
cursor, statement, parameters = (
context.cursor,
context.statement,
context.parameters,
)
if not context.executemany:
parameters = parameters[0]
if self._has_events or self.engine._has_events:
for fn in self.dispatch.before_cursor_execute:
statement, parameters = fn(
self,
cursor,
statement,
parameters,
context,
context.executemany,
)
if self._echo:
self.engine.logger.info(statement)
if not self.engine.hide_parameters:
self.engine.logger.info(
"%r",
sql_util._repr_params(
parameters, batches=10, ismulti=context.executemany
),
)
else:
self.engine.logger.info(
"[SQL parameters hidden due to hide_parameters=True]"
)
evt_handled = False
try:
if context.executemany:
if self.dialect._has_events:
for fn in self.dialect.dispatch.do_executemany:
if fn(cursor, statement, parameters, context):
evt_handled = True
break
if not evt_handled:
self.dialect.do_executemany(
cursor, statement, parameters, context
)
elif not parameters and context.no_parameters:
if self.dialect._has_events:
for fn in self.dialect.dispatch.do_execute_no_params:
if fn(cursor, statement, context):
evt_handled = True
break
if not evt_handled:
self.dialect.do_execute_no_params(
cursor, statement, context
)
else:
if self.dialect._has_events:
for fn in self.dialect.dispatch.do_execute:
if fn(cursor, statement, parameters, context):
evt_handled = True
break
if not evt_handled:
> self.dialect.do_execute(
cursor, statement, parameters, context
)
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py:1276:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <sqlalchemy.dialects.mysql.mysqldb.MySQLDialect_mysqldb object at 0x7fdbf370b730>, cursor = <MySQLdb.cursors.Cursor object at 0x7fdbf375bf70>
statement = 'CREATE INDEX ix_test_table_0a574 ON test_table_backup (signal_type, signal_data)', parameters = ()
context = <sqlalchemy.dialects.mysql.mysqldb.MySQLExecutionContext_mysqldb object at 0x7fdbf36f3d90>
def do_execute(self, cursor, statement, parameters, context=None):
> cursor.execute(statement, parameters)
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/default.py:608:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <MySQLdb.cursors.Cursor object at 0x7fdbf375bf70>, query = b'CREATE INDEX ix_test_table_0a574 ON test_table_backup (signal_type, signal_data)', args = ()
def execute(self, query, args=None):
"""Execute a query.
query -- string, query to execute on server
args -- optional sequence or mapping, parameters to use with query.
Note: If args is a sequence, then %s must be used as the
parameter placeholder in the query. If a mapping is used,
%(key)s must be used as the placeholder.
Returns integer represents rows affected, if any
"""
while self.nextset():
pass
db = self._get_db()
if isinstance(query, str):
query = query.encode(db.encoding)
if args is not None:
if isinstance(args, dict):
nargs = {}
for key, item in args.items():
if isinstance(key, str):
key = key.encode(db.encoding)
nargs[key] = db.literal(item)
args = nargs
else:
args = tuple(map(db.literal, args))
try:
query = query % args
except TypeError as m:
raise ProgrammingError(str(m))
assert isinstance(query, (bytes, bytearray))
> res = self._query(query)
/usr/local/lib/python3.9/site-packages/MySQLdb/cursors.py:206:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <MySQLdb.cursors.Cursor object at 0x7fdbf375bf70>, q = b'CREATE INDEX ix_test_table_0a574 ON test_table_backup (signal_type, signal_data)'
def _query(self, q):
db = self._get_db()
self._result = None
> db.query(q)
/usr/local/lib/python3.9/site-packages/MySQLdb/cursors.py:319:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_mysql.connection open to 'afs-db-test' at 0x560bdcd86ad0>, query = b'CREATE INDEX ix_test_table_0a574 ON test_table_backup (signal_type, signal_data)'
def query(self, query):
# Since _mysql releases GIL while querying, we need immutable buffer.
if isinstance(query, bytearray):
query = bytes(query)
> _mysql.connection.query(self, query)
E MySQLdb._exceptions.OperationalError: (1170, "BLOB/TEXT column 'signal_data' used in key specification without a key length")
/usr/local/lib/python3.9/site-packages/MySQLdb/connections.py:259: OperationalError
The above exception was the direct cause of the following exception:
engine = Engine(mysql://root:***@afs-db-test/afs)
def test(engine):
#cleanup of residual tables from previous test
drop_table = sa.text(f"DROP TABLE IF EXISTS test_table")
engine.execute(drop_table)
drop_table = sa.text(f"DROP TABLE IF EXISTS test_table_backup")
engine.execute(drop_table)
create_old_table(engine)
create_backup_table(engine, "test_table")
> create_indices(engine)
tests/tools/test_delete_me.py:85:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/tools/test_delete_me.py:30: in create_indices
index.create(bind=conn)
/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/schema.py:4032: in create
bind._run_visitor(ddl.SchemaGenerator, self)
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py:1656: in _run_visitor
visitorcallable(self.dialect, self, **kwargs).traverse_single(element)
/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/visitors.py:145: in traverse_single
return meth(obj, **kw)
/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/ddl.py:868: in visit_index
self.connection.execute(CreateIndex(index))
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py:1011: in execute
return meth(self, multiparams, params)
/usr/local/lib/python3.9/site-packages/sqlalchemy/sql/ddl.py:72: in _execute_on_connection
return connection._execute_ddl(self, multiparams, params)
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py:1068: in _execute_ddl
ret = self._execute_context(
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py:1316: in _execute_context
self._handle_dbapi_exception(
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py:1510: in _handle_dbapi_exception
util.raise_(
/usr/local/lib/python3.9/site-packages/sqlalchemy/util/compat.py:182: in raise_
raise exception
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/base.py:1276: in _execute_context
self.dialect.do_execute(
/usr/local/lib/python3.9/site-packages/sqlalchemy/engine/default.py:608: in do_execute
cursor.execute(statement, parameters)
/usr/local/lib/python3.9/site-packages/MySQLdb/cursors.py:206: in execute
res = self._query(query)
/usr/local/lib/python3.9/site-packages/MySQLdb/cursors.py:319: in _query
db.query(q)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <_mysql.connection open to 'afs-db-test' at 0x560bdcd86ad0>, query = b'CREATE INDEX ix_test_table_0a574 ON test_table_backup (signal_type, signal_data)'
def query(self, query):
# Since _mysql releases GIL while querying, we need immutable buffer.
if isinstance(query, bytearray):
query = bytes(query)
> _mysql.connection.query(self, query)
E sqlalchemy.exc.OperationalError: (MySQLdb._exceptions.OperationalError) (1170, "BLOB/TEXT column 'signal_data' used in key specification without a key length")
E [SQL: CREATE INDEX ix_test_table_0a574 ON test_table_backup (signal_type, signal_data)]
E (Background on this error at: http://sqlalche.me/e/13/e3q8)
/usr/local/lib/python3.9/site-packages/MySQLdb/connections.py:259: OperationalError
---------------------------------------------------------------------------------------------- Captured stdout call -----------------------------------------------------------------------------------------------
Index('ix_test_table_0a574', Column('signal_type', INTEGER(display_width=11), table=<test_table>, nullable=False), Column('signal_data', MEDIUMTEXT(collation='utf8_czech_ci'), table=<test_table>, nullable=False))
### Versions
* OS: Linux - Manjaro
* Python: 3.9.15
* SQLAlchemy: 1.3.24
* Database: MariaDB
* DBAPI (eg: psycopg, cx_oracle, mysqlclient):
### Additional context
The reason why we first create the backup_table without indices is that we
migrate selected data first avoiding the cost of indexing on each write and
add the index at the end which is significantly faster.
| 0 |
I would like to be able to open a new administrator terminal using the "+"
button, within the same terminal instance.
|
# Environment
Windows build number: 10.0.18363.418
Windows Terminal version (if applicable): 0.6.2951.0
Any other software? No
# Steps to reproduce
Use this json file:
// THIS IS AN AUTO-GENERATED FILE! Changes to this file will be ignored.
{
"$schema": "https://aka.ms/terminal-profiles-schema",
"alwaysShowTabs": true,
"defaultProfile": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"initialCols": 120,
"initialRows": 30,
"requestedTheme": "system",
"showTabsInTitlebar": true,
"showTerminalTitleInTitlebar": true,
"wordDelimiters": " /\\()"'-.,:;<> ~~!@#$%^ &*|+=[]{}~~?\u2502",
"profiles":
[
{
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false,
"startingDirectory": "%USERPROFILE%",
"closeOnExit": true,
"colorScheme": "Campbell Powershell",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Consolas",
"fontSize": 12,
"historySize": 9001,
"icon": "ms-appx:///ProfileIcons/{61c54bbd-c2c6-5271-96e7-009a87ff44bf}.png",
"padding": "8, 8, 8, 8",
"snapOnInput": true,
"useAcrylic": false
},
{
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false,
"startingDirectory": "%USERPROFILE%",
"closeOnExit": true,
"colorScheme": "Solarized Light",
"cursorColor": "#FFFFFF",
"cursorShape": "bar",
"fontFace": "Consolas",
"fontSize": 12,
"historySize": 9001,
"icon": "ms-appx:///ProfileIcons/{0caa0dad-35be-5f56-a8ff-afceeeaa6101}.png",
"padding": "8, 8, 8, 8",
"snapOnInput": true,
"useAcrylic": false
},
{
"guid": "{b453ae62-4e3d-5e58-b989-0a998ec441b8}",
"hidden": false,
"name": "Azure Cloud Shell",
"source": "Windows.Terminal.Azure"
}
],
"schemes":
[
{
"name": "Campbell",
"foreground": "#CCCCCC",
"background": "#0C0C0C",
"black": "#0C0C0C",
"red": "#C50F1F",
"green": "#13A10E",
"yellow": "#C19C00",
"blue": "#0037DA",
"purple": "#881798",
"cyan": "#3A96DD",
"white": "#CCCCCC",
"brightBlack": "#767676",
"brightRed": "#E74856",
"brightGreen": "#16C60C",
"brightYellow": "#F9F1A5",
"brightBlue": "#3B78FF",
"brightPurple": "#B4009E",
"brightCyan": "#61D6D6",
"brightWhite": "#F2F2F2"
},
{
"name": "Campbell Powershell",
"foreground": "#CCCCCC",
"background": "#012456",
"black": "#0C0C0C",
"red": "#C50F1F",
"green": "#13A10E",
"yellow": "#C19C00",
"blue": "#0037DA",
"purple": "#881798",
"cyan": "#3A96DD",
"white": "#CCCCCC",
"brightBlack": "#767676",
"brightRed": "#E74856",
"brightGreen": "#16C60C",
"brightYellow": "#F9F1A5",
"brightBlue": "#3B78FF",
"brightPurple": "#B4009E",
"brightCyan": "#61D6D6",
"brightWhite": "#F2F2F2"
},
{
"name": "Vintage",
"foreground": "#C0C0C0",
"background": "#000000",
"black": "#000000",
"red": "#800000",
"green": "#008000",
"yellow": "#808000",
"blue": "#000080",
"purple": "#800080",
"cyan": "#008080",
"white": "#C0C0C0",
"brightBlack": "#808080",
"brightRed": "#FF0000",
"brightGreen": "#00FF00",
"brightYellow": "#FFFF00",
"brightBlue": "#0000FF",
"brightPurple": "#FF00FF",
"brightCyan": "#00FFFF",
"brightWhite": "#FFFFFF"
},
{
"name": "One Half Dark",
"foreground": "#DCDFE4",
"background": "#282C34",
"black": "#282C34",
"red": "#E06C75",
"green": "#98C379",
"yellow": "#E5C07B",
"blue": "#61AFEF",
"purple": "#C678DD",
"cyan": "#56B6C2",
"white": "#DCDFE4",
"brightBlack": "#5A6374",
"brightRed": "#E06C75",
"brightGreen": "#98C379",
"brightYellow": "#E5C07B",
"brightBlue": "#61AFEF",
"brightPurple": "#C678DD",
"brightCyan": "#56B6C2",
"brightWhite": "#DCDFE4"
},
{
"name": "One Half Light",
"foreground": "#383A42",
"background": "#FAFAFA",
"black": "#383A42",
"red": "#E45649",
"green": "#50A14F",
"yellow": "#C18301",
"blue": "#0184BC",
"purple": "#A626A4",
"cyan": "#0997B3",
"white": "#FAFAFA",
"brightBlack": "#4F525D",
"brightRed": "#DF6C75",
"brightGreen": "#98C379",
"brightYellow": "#E4C07A",
"brightBlue": "#61AFEF",
"brightPurple": "#C577DD",
"brightCyan": "#56B5C1",
"brightWhite": "#FFFFFF"
},
{
"name": "Solarized Dark",
"foreground": "#839496",
"background": "#002B36",
"black": "#073642",
"red": "#DC322F",
"green": "#859900",
"yellow": "#B58900",
"blue": "#268BD2",
"purple": "#D33682",
"cyan": "#2AA198",
"white": "#EEE8D5",
"brightBlack": "#002B36",
"brightRed": "#CB4B16",
"brightGreen": "#586E75",
"brightYellow": "#657B83",
"brightBlue": "#839496",
"brightPurple": "#6C71C4",
"brightCyan": "#93A1A1",
"brightWhite": "#FDF6E3"
},
{
"name": "Solarized Light",
"foreground": "#657B83",
"background": "#FDF6E3",
"black": "#073642",
"red": "#DC322F",
"green": "#859900",
"yellow": "#B58900",
"blue": "#268BD2",
"purple": "#D33682",
"cyan": "#2AA198",
"white": "#EEE8D5",
"brightBlack": "#002B36",
"brightRed": "#CB4B16",
"brightGreen": "#586E75",
"brightYellow": "#657B83",
"brightBlue": "#839496",
"brightPurple": "#6C71C4",
"brightCyan": "#93A1A1",
"brightWhite": "#FDF6E3"
}
],
"keybindings":
[
{ "command": "closePane", "keys": ["ctrl+shift+w"] },
{ "command": "closeWindow", "keys": ["alt+f4"] },
{ "command": "copy", "keys": ["ctrl+shift+c"] },
{ "command": "duplicateTab", "keys": ["ctrl+shift+d"] },
{ "command": "newTab", "keys": ["ctrl+shift+t"] },
{ "command": "newTabProfile0", "keys": ["ctrl+shift+1"] },
{ "command": "newTabProfile1", "keys": ["ctrl+shift+2"] },
{ "command": "newTabProfile2", "keys": ["ctrl+shift+3"] },
{ "command": "newTabProfile3", "keys": ["ctrl+shift+4"] },
{ "command": "newTabProfile4", "keys": ["ctrl+shift+5"] },
{ "command": "newTabProfile5", "keys": ["ctrl+shift+6"] },
{ "command": "newTabProfile6", "keys": ["ctrl+shift+7"] },
{ "command": "newTabProfile7", "keys": ["ctrl+shift+8"] },
{ "command": "newTabProfile8", "keys": ["ctrl+shift+9"] },
{ "command": "nextTab", "keys": ["ctrl+tab"] },
{ "command": "openNewTabDropdown", "keys": ["ctrl+shift+space"] },
{ "command": "openSettings", "keys": ["ctrl+,"] },
{ "command": "paste", "keys": ["ctrl+shift+v"] },
{ "command": "prevTab", "keys": ["ctrl+shift+tab"] },
{ "command": "scrollDown", "keys": ["ctrl+shift+down"] },
{ "command": "scrollDownPage", "keys": ["ctrl+shift+pgdn"] },
{ "command": "scrollUp", "keys": ["ctrl+shift+up"] },
{ "command": "scrollUpPage", "keys": ["ctrl+shift+pgup"] },
{ "command": "switchToTab0", "keys": ["ctrl+alt+1"] },
{ "command": "switchToTab1", "keys": ["ctrl+alt+2"] },
{ "command": "switchToTab2", "keys": ["ctrl+alt+3"] },
{ "command": "switchToTab3", "keys": ["ctrl+alt+4"] },
{ "command": "switchToTab4", "keys": ["ctrl+alt+5"] },
{ "command": "switchToTab5", "keys": ["ctrl+alt+6"] },
{ "command": "switchToTab6", "keys": ["ctrl+alt+7"] },
{ "command": "switchToTab7", "keys": ["ctrl+alt+8"] },
{ "command": "switchToTab8", "keys": ["ctrl+alt+9"] },
{ "command": "decreaseFontSize", "keys": ["ctrl+-"] },
{ "command": "increaseFontSize", "keys": ["ctrl+="] }
]
}
Run "findstr /snip a *" under a folder with some text files.
# Expected behavior
The file name /line # should be visible.
# Actual behavior

The file name /line # is not visible. Blue Circle.
| 0 |
Challenge http://freecodecamp.com/challenges/waypoint-use-appendto-to-move-
elements-with-jquery has an issue. Please describe how to reproduce it, and
include links to screenshots if possible.
|
Challenge http://www.freecodecamp.com/challenges/waypoint-create-a-javascript-
slot-machine has an issue.
The four Javascript slot machine exercises all display the JS section of the
code incorrectly. Presumably `fccss` is supposed to be `<script>`, and
likewise `fcces` is supposed to be `</script>`.

| 1 |
I am installing tensorflow on window machine with the help of Python (version
python-3.5.4-amd64).
Command use to install tensorflow :- pip3 install --upgrade tensorflow
Bellow error getting in Import tensorflow command.
Traceback (most recent call last):
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in
swig_import_helper
return importlib.import_module(mname)
File "C:\Program Files\Python35\lib\importlib_ _init_ _.py", line 126, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 985, in _gcd_import
File "", line 968, in _find_and_load
File "", line 957, in _find_and_load_unlocked
File "", line 666, in _load_unlocked
File "", line 577, in module_from_spec
File "", line 938, in create_module
File "", line 222, in _call_with_frames_removed
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow.py", line 41, in
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in
swig_import_helper
return importlib.import_module(' _pywrap_tensorflow_internal')
File "C:\Program Files\Python35\lib\importlib_ _init__.py", line 126, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
ImportError: No module named '_pywrap_tensorflow_internal'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "D:\eclipse\WorkspavePython\study\test.py", line 1, in
import tensorflow as tf
File "C:\Program Files\Python35\lib\site-packages\tensorflow_ _init_ _.py",
line 24, in
from tensorflow.python import *
File "C:\Program Files\Python35\lib\site-packages\tensorflow\python_ _init_
_.py", line 49, in
from tensorflow.python import pywrap_tensorflow
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow.py", line 52, in
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in
swig_import_helper
return importlib.import_module(mname)
File "C:\Program Files\Python35\lib\importlib_ _init_ _.py", line 126, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 985, in _gcd_import
File "", line 968, in _find_and_load
File "", line 957, in _find_and_load_unlocked
File "", line 666, in _load_unlocked
File "", line 577, in module_from_spec
File "", line 938, in create_module
File "", line 222, in _call_with_frames_removed
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow.py", line 41, in
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Program Files\Python35\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in
swig_import_helper
return importlib.import_module(' _pywrap_tensorflow_internal')
File "C:\Program Files\Python35\lib\importlib_ _init__.py", line 126, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
ImportError: No module named '_pywrap_tensorflow_internal'
Failed to load the native TensorFlow runtime.
See
https://www.tensorflow.org/install/install_sources#common_installation_problems
for some common reasons and solutions. Include the entire stack trace
above this error message when asking for help.
|
Hi - Thanks for all your hard work on this! - I've been having a problem
getting Tensorflow-GPU to work on my Windows 10 notebook with a GTX 1080. I've
tried to make sure all the paths are correct, etc. and have followed all the
tips I can find.
I ran the tensorflow_self_check.py script and got the following result:
PS D:\Users\Frank Davidson\Documents\python> python .\tensorflow_self_check.py
ERROR: Failed to import the TensorFlow module.
* Python version is 3.6.
* TensorFlow is installed at: C:\Program Files\Python36\lib\site-packages\tensorflow
* All required DLLs appear to be present. Please open an issue on the
TensorFlow GitHub page: https://github.com/tensorflow/tensorflow/issues
PS D:\Users\Frank Davidson\Documents\python>
Here is the full stack trace when I try to import tensorflow:
PS C:\Users\Frank Davidson> python
Python 3.6.2 (v3.6.2:5fd33b5, Jul 8 2017, 04:57:36) [MSC v.1900 64 bit
(AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
> > > import tensorflow as tf
> Traceback (most recent call last):
> File "C:\Program Files\Python36\lib\site-
> packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in
> swig_i
> mport_helper
> return importlib.import_module(mname)
> File "C:\Program Files\Python36\lib\importlib_ _init_ _.py", line 126, in
> import_module
> return _bootstrap._gcd_import(name[level:], package, level)
> File "", line 978, in _gcd_import
> File "", line 961, in _find_and_load
> File "", line 950, in _find_and_load_unlocked
> File "", line 648, in _load_unlocked
> File "", line 560, in module_from_spec
> File "", line 922, in create_module
> File "", line 205, in _call_with_frames_removed
> ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow.py", line 41, in
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_i
mport_helper
return importlib.import_module(' _pywrap_tensorflow_internal')
File "C:\Program Files\Python36\lib\importlib_ _init__.py", line 126, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "", line 1, in
File "C:\Program Files\Python36\lib\site-packages\tensorflow_ _init_ _.py",
line 24, in
from tensorflow.python import *
File "C:\Program Files\Python36\lib\site-packages\tensorflow\python_ _init_
_.py", line 49, in
from tensorflow.python import pywrap_tensorflow
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow.py", line 52, in
raise ImportError(msg)
ImportError: Traceback (most recent call last):
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 18, in swig_i
mport_helper
return importlib.import_module(mname)
File "C:\Program Files\Python36\lib\importlib_ _init_ _.py", line 126, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
File "", line 978, in _gcd_import
File "", line 961, in _find_and_load
File "", line 950, in _find_and_load_unlocked
File "", line 648, in _load_unlocked
File "", line 560, in module_from_spec
File "", line 922, in create_module
File "", line 205, in _call_with_frames_removed
ImportError: DLL load failed: The specified module could not be found.
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow.py", line 41, in
from tensorflow.python.pywrap_tensorflow_internal import *
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 21, in
_pywrap_tensorflow_internal = swig_import_helper()
File "C:\Program Files\Python36\lib\site-
packages\tensorflow\python\pywrap_tensorflow_internal.py", line 20, in swig_i
mport_helper
return importlib.import_module(' _pywrap_tensorflow_internal')
File "C:\Program Files\Python36\lib\importlib_ _init__.py", line 126, in
import_module
return _bootstrap._gcd_import(name[level:], package, level)
ModuleNotFoundError: No module named '_pywrap_tensorflow_internal'
Failed to load the native TensorFlow runtime.
See
https://www.tensorflow.org/install/install_sources#common_installation_problems
for some common reasons and solutions. Include the entire stack trace
above this error message when asking for help.
Any help is greatly appreciated!
Frank
| 1 |
ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-\njenkins/logs/kubernetes-e2e-gke-serial/2221/\n\nFailed: [k8s.io] Rescheduler [Serial] should ensure that critical pod is\nscheduled in case there is no resources available {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:67\n Expected error:\n <*errors.errorString | 0xc820ac50c0>: {\n s: \"Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \\\"k8s-app=kube-dns,version=v19\\\" to be running\",\n }\n Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \"k8s-app=kube-dns,version=v19\" to be running\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:66\n \n\nPrevious issues for this test: #31277 #31347 #31710\n\n" | ERROR: type should be string, got "\n\nhttps://k8s-gubernator.appspot.com/build/kubernetes-jenkins/logs/kubernetes-\nsoak-continuous-e2e-gce/6486/\n\nFailed: [k8s.io] Rescheduler [Serial] should ensure that critical pod is\nscheduled in case there is no resources available {Kubernetes e2e suite}\n\n \n \n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:67\n Expected error:\n <*errors.errorString | 0xc820b819e0>: {\n s: \"Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \\\"k8s-app=kube-dns,version=v19\\\" to be running\",\n }\n Error while waiting for replication controller kube-dns-v19 pods to be running: Timeout while waiting for pods with labels \"k8s-app=kube-dns,version=v19\" to be running\n not to have occurred\n /go/src/k8s.io/kubernetes/_output/dockerized/go/src/k8s.io/kubernetes/test/e2e/rescheduler.go:66\n \n\nPrevious issues for this test: #31277 #31347\n\n" | 1 |
In Windows 10, when Numpy has overflow it shows a wrong number without error.
In Linux it doesn't have this problem.
import numpy as np
a= [4, 7, 6, 5, 4, 5, 6, 8, 2, 8, 4, 8, 9]
print (np.prod(a))
>> -579076096
The correct one is
import numpy as np
a= [4, 7, 6, 5, 4, 5, 6, 8, 2, 8, 4, 8, 9]
print (np.prod(a, dtype='int64'))
>> 23514624000
Numpy should show some errors of overflow
Related issue
|
This has come up before, but I'm not sure we have a canonical issue.
Historically in python 2:
* `builtins.int` is mapped to `np.int_` (C `long`), since `builtins.int` is stored as a C `long`
* `builtins.long` is mapped to `np.longlong` (C `long long`), since `builtins.long` is infinite precision and that's the largest available integer type
# python 2.7
>>> np.dtype(int).char
'l'
>>> np.dtype(long).char
'q'
Note the above output only reflects the state of windows - other platforms
have `sizeof(long) == sizeof(long long)`, so the distinction isn't important.
In python 3, `builtins.int` has been removed, and `builtins.long` has been
renamed to `__builtins__.int`. Yet:
# python 3.5
>>> new_long = int
>>> np.dtype(new_long).char
'l' # smaller than it was on python 2
This means that python code translated from 2 to 3 by replacing `long` with
`int` will start behaving differently:
# python 2
>>> np.array(10**10, dtype=long)
array(10000000000L, dtype=int64)
# python 3 translation
>>> np.array(10**10, dtype=int)
OverflowError: Python int too large to convert to C long
Since this affects users transitioning from 2 to 3, I think it's important
that we get it fixed in 1.16, which will be the last version that
transitioning users can test both version of python against.
* * *
The current implementation, introduced in `aa7be88` by @pv, is:
#if !defined(NPY_PY3K)
if (obj == (PyObject *)(&PyInt_Type)) {
check_num = NPY_LONG;
}
else if (obj == (PyObject *)(&PyLong_Type)) {
check_num = NPY_LONGLONG;
}
#else
if (obj == (PyObject *)(&PyLong_Type)) {
check_num = NPY_LONG;
}
#endif
I'd propose it should have been:
#if !defined(NPY_PY3K)
if (obj == (PyObject *)(&PyInt_Type)) {
check_num = NPY_LONG;
}
else
#endif
if (obj == (PyObject *)(&PyLong_Type)) {
check_num = NPY_LONGLONG;
}
Ie, treating `PyLong_Type` in python 3 just as we always did in python 2.
| 1 |
**Apache Airflow version** : 1.8.0
Ticket was created 23/Nov/16 01:12
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
**Environment** :
* **Cloud provider or hardware configuration** :
* **OS** (e.g. from /etc/os-release):
* **Kernel** (e.g. `uname -a`):
* **Install tools** :
* **Others** :
**What happened** :
We ported over a number of our cronjobs to run using Airflow. To achieve the
desired behavior, we use the LatestOnlyOperator that was merged to master by
pull request 1752: #1752.
When we moved over our cronjobs, we migrated many at a time (using ansible).
These DAGs had a start date going back a few days.
The first thing I noticed is that it seemed to take a long time to process the
backfilled DAGs. They were being processed correctly, in the sense that the
'latest_only' operator was being completely successfully, and the downstream
BashOperator was marked as skipped. It also appeared that the DAG run
completed successfully in the tree view. However, when I searched the DAG runs
for state contains running, I saw that they were present.
One thing I noticed was that in the logs for one of the "stuck" DAG runs, it
appeared that the 'latest_only' task was processed multiple times.
## [2016-11-22 12:26:27,701] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:28:50,335] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:28:53,288] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:28:58,400] {models.py:1196} INFO -
## Starting attempt 1 of 1
[2016-11-22 12:28:59,334] {models.py:1219} INFO - Executing
<Task(LatestOnlyOperator): latest_only> on 2016-11-20 04:00:00
[2016-11-22 12:29:00,671] {airflow_next.py:27} INFO - Checking latest only
with left_window: 2016-11-21 04:00:00 right_window: 2016-11-22 04:00:00 now:
2016-11-22 12:29:00.670321
[2016-11-22 12:29:00,671] {airflow_next.py:29} INFO - Not latest execution,
skipping downstream.
[2016-11-22 12:29:00,672] {airflow_next.py:34} INFO - Skipping task: my_dag
[2016-11-22 12:29:01,397] {airflow_next.py:41} INFO - Done.
[2016-11-22 12:31:13,055] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:31:17,899] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:32:31,907] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:34:56,522] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:35:00,975] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:35:36,323] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:38:00,140] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:38:05,057] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:38:50,014] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:41:07,609] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:41:12,232] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:41:45,857] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:44:05,354] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:44:09,635] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:44:30,851] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:46:58,977] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:47:02,836] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:48:27,571] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:50:54,034] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:50:57,951] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:51:21,442] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:53:44,461] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:53:48,392] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:54:28,745] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:56:50,740] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:56:54,382] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 12:57:59,881] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:59:04,245] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
[2016-11-22 12:59:05,666] {models.py:1150} INFO - Task <TaskInstance:
my_dag.latest_only 2016-11-20 04:00:00 [success]> previously succeeded on
2016-11-22 12:29:01.397870
[2016-11-22 13:02:18,434] {models.py:154} INFO - Filling up the DagBag from
/DAGDIR/my_dag.py
We use CeleryExecutor backed by Redis. When inspecting the Redis key itself
that held the queue, I verified that duplicate tasks were in there; there were
thousnands of tasks in the queue. Here are the tasks that were at the head of
the task list (the dag names are changed for readability):
[
u"['airflow run DAG_01 latest_only 2016-11-18T09:23:00 --local -sd
DAGS_FOLDER/DAG_01.py ']",
u"['airflow run DAG_02 latest_only 2016-11-18T03:45:00 --local -sd
DAGS_FOLDER/DAG_02.py ']",
u"['airflow run DAG_03 latest_only 2016-11-18T00:08:00 --local -sd
DAGS_FOLDER/DAG_03.py ']",
u"['airflow run DAG_04 latest_only 2016-11-22T10:40:00 --local -sd
DAGS_FOLDER/DAG_04.py ']",
u"['airflow run DAG_05 latest_only 2016-11-18T05:00:00 --local -sd
DAGS_FOLDER/DAG_05.py ']",
u"['airflow run DAG_06 latest_only 2016-11-22T11:20:00 --local -sd
DAGS_FOLDER/DAG_06.py ']",
u"['airflow run DAG_07 latest_only 2016-11-18T10:14:00 --local -sd
DAGS_FOLDER/DAG_07.py ']",
u"['airflow run DAG_01 latest_only 2016-11-18T09:23:00 --local -sd
DAGS_FOLDER/DAG_01.py ']",
u"['airflow run DAG_02 latest_only 2016-11-18T03:45:00 --local -sd
DAGS_FOLDER/DAG_02.py ']",
u"['airflow run DAG_03 latest_only 2016-11-18T00:08:00 --local -sd
DAGS_FOLDER/DAG_03.py ']",
u"['airflow run DAG_04 latest_only 2016-11-22T10:40:00 --local -sd
DAGS_FOLDER/DAG_04.py ']",
u"['airflow run DAG_05 latest_only 2016-11-18T05:00:00 --local -sd
DAGS_FOLDER/DAG_05.py ']",
u"['airflow run DAG_06 latest_only 2016-11-22T11:20:00 --local -sd
DAGS_FOLDER/DAG_06.py ']",
u"['airflow run DAG_07 latest_only 2016-11-18T10:14:00 --local -sd
DAGS_FOLDER/DAG_07.py ']"
]
Grepping the scheduler's logs, here is one of the instances I see of the
scheduler enqueuing a duplicate task:
## $ grep -A2 "DAG_01" /var/log/airflow/airflow-scheduler.log | grep -A2
"09:23"
[2016-11-22 13:24:26,660] {models.py:2660} INFO - Checking state for <DagRun
DAG_01 @ 2016-11-18 09:23:00: scheduled__2016-11-18T09:23:00, externally
triggered: False>
[2016-11-22 13:24:26,672] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
[2016-11-22 13:24:26,678] {jobs.py:514} INFO - Checking dependencies on 2
tasks instances, minus 0 skippable ones
[2016-11-22 13:24:26,726] {base_executor.py:36} INFO - Adding to queue:
airflow run DAG_01 latest_only 2016-11-18T09:23:00 --local -sd
DAGS_FOLDER/DAG_01.py
[2016-11-22 13:24:26,769] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
[2016-11-22 13:24:26,769] {jobs.py:514} INFO - Checking dependencies on 0
tasks instances, minus 0 skippable ones
## [2016-11-22 13:24:31,830] {models.py:2660} INFO - Checking state for
<DagRun DAG_01 @ 2016-11-18 09:23:00: scheduled__2016-11-18T09:23:00,
externally triggered: False>
[2016-11-22 13:24:31,832] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
[2016-11-22 13:24:31,832] {jobs.py:514} INFO - Checking dependencies on 0
tasks instances, minus 0 skippable ones
## [2016-11-22 13:24:37,238] {models.py:2660} INFO - Checking state for
<DagRun DAG_01 @ 2016-11-18 09:23:00: scheduled__2016-11-18T09:23:00,
externally triggered: False>
[2016-11-22 13:24:37,240] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
[2016-11-22 13:24:37,252] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
## [2016-11-22 13:24:45,736] {models.py:2660} INFO - Checking state for
<DagRun DAG_01 @ 2016-11-18 09:23:00: scheduled__2016-11-18T09:23:00,
externally triggered: False>
[2016-11-22 13:24:45,744] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
[2016-11-22 13:24:45,756] {jobs.py:514} INFO - Checking dependencies on 2
tasks instances, minus 0 skippable ones
## [2016-11-22 13:24:56,613] {models.py:2660} INFO - Checking state for
<DagRun DAG_01 @ 2016-11-18 09:23:00: scheduled__2016-11-18T09:23:00,
externally triggered: False>
[2016-11-22 13:24:56,624] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
[2016-11-22 13:24:56,638] {jobs.py:514} INFO - Checking dependencies on 2
tasks instances, minus 0 skippable ones
[2016-11-22 13:24:56,680] {base_executor.py:36} INFO - Adding to queue:
airflow run DAG_01 latest_only 2016-11-18T09:23:00 --local -sd
DAGS_FOLDER/DAG_01.py
[2016-11-22 13:24:56,823] {jobs.py:498} INFO - Getting list of tasks to skip
for active runs.
[2016-11-22 13:24:56,824] {jobs.py:514} INFO - Checking dependencies on 0
tasks instances, minus 0 skippable ones
Eventually, we ended up just creating new DAG definitions with future start
dates and manually cleared the Redis queue.
_Additional Context_ :
Our scheduler is daemonized by upstart and runs with -n 5
Here is the template we use for our cron DAGs (note it's a jinja2 template):
# {{ansible_managed}}
from dateutil import parser
from airflow.operators import LatestOnlyOperator
from airflow.operators import BashOperator
from airflow.models import DAG
args = {
'owner': 'airflow',
'start_date': parser.parse('{{item.start_date}}'),
'retries': 0,
}
dag = DAG(
dag_id='{{item.name}}',
default_args=args,
schedule_interval='{{item.schedule}}',
max_active_runs=1,
)
latest_only = LatestOnlyOperator(task_id='latest_only', dag=dag)
script = BashOperator(
task_id='{{item.name}}',
bash_command='{{item.command}}',
default_args=args,
dag=dag,
)
script.set_upstream(latest_only)
One thing to note: We are on Airflow 2.7.1.3; however, we brought in the
operator through a plugin:
import datetime
import logging
from airflow.models import BaseOperator, TaskInstance
from airflow.plugins_manager import AirflowPlugin
from airflow.utils.state import State
from airflow import settings
class LatestOnlyOperator(BaseOperator):
"""
Allows a workflow to skip tasks that are not running during the most
recent schedule interval.
If the task is run outside of the latest schedule interval, all
directly downstream tasks will be skipped.
"""
ui_color = '#e9ffdb' # nyanza
def execute(self, context):
now = datetime.datetime.now()
left_window = context['dag'].following_schedule(
context['execution_date'])
right_window = context['dag'].following_schedule(left_window)
logging.info(
'Checking latest only with left_window: %s right_window: %s '
'now: %s', left_window, right_window, now)
if not left_window < now <= right_window:
logging.info('Not latest execution, skipping downstream.')
session = settings.Session()
for task in context['task'].downstream_list:
ti = TaskInstance(
task, execution_date=context['ti'].execution_date)
logging.info('Skipping task: %s', ti.task_id)
ti.state = State.SKIPPED
ti.start_date = now
ti.end_date = now
session.merge(ti)
session.commit()
session.close()
logging.info('Done.')
else:
logging.info('Latest, allowing execution to proceed.')
class AirflowNextPlugin(AirflowPlugin):
name = "airflow_next"
operators = [LatestOnlyOperator]
**What you expected to happen** :
**How to reproduce it** :
**Anything else we need to know** :
Moved here from https://issues.apache.org/jira/browse/AIRFLOW-648
|
### Apache Airflow version
2.3.1
### What happened
The execution of of the command "airflow db upgrade" to upgrade the version
from 2.2.5 to 2.3.0 or 2.3.1 fails with the following error:
(airflow) [airflow@rabbit01 airflow]$ export LD_LIBRARY_PATH=/opt/python-
bit/lib:$LD_LIBRARY_PATH
(airflow) [airflow@rabbit01 airflow]$ airflow db upgrade
DB: mysql+mysqldb://airflow: _ **@localdb.localdomain.it:3306/airflow
Performing upgrade with database
mysql+mysqldb://airflow:**_@localdb.localdomain.it:3306/airflow
[2022-06-06 10:18:48,523] {db.py:1445} INFO - Creating tables
INFO [alembic.runtime.migration] Context impl MySQLImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running upgrade 45ba3f1493b9 -> 849da589634d,
Prefix DAG permissions.
Traceback (most recent call last):
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1783, in _cursor_execute
self.dialect.do_execute(cursor, statement, parameters, context)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 716, in do_execute
cursor.execute(statement, parameters)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/connections.py", line 254, in query
_mysql.connection.query(self, query)
**MySQLdb._exceptions.ProgrammingError: (1146, "Table
'airflow.ab_permission_id_seq' doesn't exist")**
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1608, in _execute_context
context = constructor(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 998, in _init_compiled
self._process_executesingle_defaults()
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1866, in
_process_executesingle_defaults
val = self.get_insert_default(c)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1811, in get_insert_default
return self._exec_default(column, column.default, column.type)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1672, in _exec_default
return self.fire_sequence(default, type_)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/dialects/mysql/base.py", line 1401, in fire_sequence
return self._execute_scalar(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1269, in _execute_scalar
conn._cursor_execute(self.cursor, stmt, parameters, context=self)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1785, in _cursor_execute
self. _handle_dbapi_exception(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1929, in _handle_dbapi_exception
util.raise_(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/util/compat.py", line 211, in raise_
raise exception
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1783, in _cursor_execute
self.dialect.do_execute(cursor, statement, parameters, context)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 716, in do_execute
cursor.execute(statement, parameters)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/connections.py", line 254, in query
_mysql.connection.query(self, query)
**sqlalchemy.exc.ProgrammingError: (MySQLdb._exceptions.ProgrammingError)
(1146, "Table 'airflow.ab_permission_id_seq' doesn't exist")**
[SQL: select nextval(ab_permission_id_seq)]
(Background on this error at: http://sqlalche.me/e/14/f405)
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/app/x01/airflow/environments/airflow/bin/airflow", line 8, in
sys.exit(main())
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/ **main**.py", line 38, in main
args.func(args)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/cli/cli_parser.py", line 51, in command
return func(*args, **kwargs)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/utils/cli.py", line 99, in wrapper
return f(*args, **kwargs)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/cli/commands/db_command.py", line 82, in upgradedb
db.upgradedb(to_revision=to_revision, from_revision=from_revision,
show_sql_only=args.show_sql_only)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/utils/session.py", line 77, in wrapper
return func(*args, session=session, **kwargs)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/utils/db.py", line 1446, in upgradedb
command.upgrade(config, revision=to_revision or 'heads')
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/alembic/command.py", line 320, in upgrade
script.run_env()
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/alembic/script/base.py", line 563, in run_env
util.load_python_file(self.dir, "env.py")
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/alembic/util/pyfiles.py", line 92, in load_python_file
module = load_module_py(module_id, path)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/alembic/util/pyfiles.py", line 108, in load_module_py
spec.loader.exec_module(module) # type: ignore
File "", line 783, in exec_module
File "", line 219, in _call_with_frames_removed
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/migrations/env.py", line 107, in
run_migrations_online()
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/migrations/env.py", line 101, in run_migrations_online
context.run_migrations()
File "", line 8, in run_migrations
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/alembic/runtime/environment.py", line 851, in run_migrations
self.get_context().run_migrations(**kw)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/alembic/runtime/migration.py", line 620, in run_migrations
step.migration_fn(**kw)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/migrations/versions/0073_2_0_0_prefix_dag_permissions.py",
line 231, in upgrade
migrate_to_new_dag_permissions(db)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/migrations/versions/0073_2_0_0_prefix_dag_permissions.py",
line 161, in migrate_to_new_dag_permissions
can_read_action = get_or_create_action(db.session, 'can_read')
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/airflow/migrations/versions/0073_2_0_0_prefix_dag_permissions.py",
line 109, in get_or_create_action
session.commit()
File "", line 2, in commit
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/session.py", line 1423, in commit
self._transaction.commit(_to_root=self.future)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/session.py", line 829, in commit
self._prepare_impl()
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/session.py", line 808, in _prepare_impl
self.session.flush()
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/session.py", line 3255, in flush
self._flush(objects)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/session.py", line 3395, in _flush
transaction.rollback( _capture_exception=True)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/util/langhelpers.py", line 70, in **exit**
compat.raise_(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/util/compat.py", line 211, in raise_
raise exception
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/session.py", line 3355, in _flush
flush_context.execute()
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/unitofwork.py", line 453, in execute
rec.execute(self)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/unitofwork.py", line 627, in execute
util.preloaded.orm_persistence.save_obj(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/persistence.py", line 242, in save_obj
_emit_insert_statements(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/orm/persistence.py", line 1219, in _emit_insert_statements
result = connection._execute_20(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1520, in _execute_20
return meth(self, args_10style, kwargs_10style, execution_options)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/sql/elements.py", line 313, in _execute_on_connection
return connection._execute_clauseelement(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1389, in _execute_clauseelement
ret = self._execute_context(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1614, in _execute_context
self. _handle_dbapi_exception(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1929, in _handle_dbapi_exception
util.raise_(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/util/compat.py", line 211, in raise_
raise exception
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1608, in _execute_context
context = constructor(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 998, in _init_compiled
self._process_executesingle_defaults()
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1866, in
_process_executesingle_defaults
val = self.get_insert_default(c)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1811, in get_insert_default
return self._exec_default(column, column.default, column.type)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1672, in _exec_default
return self.fire_sequence(default, type_)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/dialects/mysql/base.py", line 1401, in fire_sequence
return self._execute_scalar(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 1269, in _execute_scalar
conn._cursor_execute(self.cursor, stmt, parameters, context=self)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1785, in _cursor_execute
self. _handle_dbapi_exception(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1929, in _handle_dbapi_exception
util.raise_(
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/util/compat.py", line 211, in raise_
raise exception
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/base.py", line 1783, in _cursor_execute
self.dialect.do_execute(cursor, statement, parameters, context)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/sqlalchemy/engine/default.py", line 716, in do_execute
cursor.execute(statement, parameters)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/cursors.py", line 206, in execute
res = self._query(query)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/cursors.py", line 319, in _query
db.query(q)
File "/app/x01/airflow/environments/airflow/lib/python3.8/site-
packages/MySQLdb/connections.py", line 254, in query
_mysql.connection.query(self, query)
**sqlalchemy.exc.StatementError: (sqlalchemy.exc.ProgrammingError)
(MySQLdb._exceptions.ProgrammingError) (1146, "Table
'airflow.ab_permission_id_seq' doesn't exist")**
It seems that the upgrade looks for a table that is not present and not
created by the upgrade itself. The same error is returned when the command
"airflow db init" is executed on a clean environment.
### What you think should happen instead
The db upgrade should create first the missing table and any other related
(and missing) object.
### How to reproduce
Just running the command using a MariaDB (or Mysql maybe) database.
### Operating System
CentOS Linux release 7.9.2009
### Versions of Apache Airflow Providers
apache-airflow-providers-amazon==3.4.0
apache-airflow-providers-celery==2.1.4
apache-airflow-providers-elasticsearch==3.0.3
apache-airflow-providers-ftp==2.1.2
apache-airflow-providers-http==2.1.2
apache-airflow-providers-imap==2.2.3
apache-airflow-providers-jdbc==2.1.3
apache-airflow-providers-jenkins==2.1.0
apache-airflow-providers-jira==2.0.5
apache-airflow-providers-mysql==2.2.3
apache-airflow-providers-odbc==2.0.4
apache-airflow-providers-oracle==2.2.3
apache-airflow-providers-postgres==4.1.0
apache-airflow-providers-redis==2.0.4
apache-airflow-providers-samba==3.0.4
apache-airflow-providers-sftp==2.6.0
apache-airflow-providers-sqlite==2.1.3
apache-airflow-providers-ssh==2.4.4
### Deployment
Virtualenv installation
### Deployment details
Virtualenv based on Python 3.8.7
### Anything else
_No response_
### Are you willing to submit PR?
* Yes I am willing to submit a PR!
### Code of Conduct
* I agree to follow this project's Code of Conduct
| 0 |
**Glide Version** : 4.12.0
**Integration libraries** : okhttp3-4.9.0
**Device/Android Version** : OPPO A5/Android8.1.0
**Issue details / Repro steps / Use case background** :
**Glide load line /`GlideModule` (if any) / list Adapter code (if any)**:
Glide.with...
**Layout XML** :
<FrameLayout xmlns:android="...
**Stack trace / LogCat** :
# main(2)
java.lang.NullPointerException
Attempt to read from field 'com.bumptech.glide.load.engine.DecodeJob$DiskCacheProvider com.bumptech.glide.load.engine.Engine$DecodeJobFactory.diskCacheProvider' on a null object reference
1
com.bumptech.glide.load.engine.Engine$DecodeJobFactory$1.create(Engine.java:483)
2
com.bumptech.glide.load.engine.Engine$DecodeJobFactory$1.create(Engine.java:480)
3
com.bumptech.glide.util.pool.FactoryPools$FactoryPool.acquire(FactoryPools.java:163)
4
com.bumptech.glide.load.engine.Engine$DecodeJobFactory.build(Engine.java:511)
5
com.bumptech.glide.load.engine.Engine.waitForExistingOrStartNewJob(Engine.java:266)
6
com.bumptech.glide.load.engine.Engine.load(Engine.java:193)
7
com.bumptech.glide.request.SingleRequest.onSizeReady(SingleRequest.java:451)
8
com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.notifyCbs(ViewTarget.java:352)
9
com.bumptech.glide.request.target.ViewTarget$SizeDeterminer.checkCurrentDimens(ViewTarget.java:368)
10
com.bumptech.glide.request.target.ViewTarget$SizeDeterminer$SizeDeterminerLayoutListener.onPreDraw(ViewTarget.java:513)
11
android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:977)
12
android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2772)
13
android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1718)
14
android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:7513)
15
android.view.Choreographer$CallbackRecord.run(Choreographer.java:1066)
16
android.view.Choreographer.doCallbacks(Choreographer.java:878)
17
android.view.Choreographer.doFrame(Choreographer.java:794)
18
android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:1052)
19
android.os.Handler.handleCallback(Handler.java:790)
20
android.os.Handler.dispatchMessage(Handler.java:99)
21
android.os.Looper.loop(Looper.java:210)
22
android.app.ActivityThread.main(ActivityThread.java:7080)
23
java.lang.reflect.Method.invoke(Native Method)
24
com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run(RuntimeInit.java:523)
25
com.android.internal.os.ZygoteInit.main(ZygoteInit.java:863)
|
I would like to find a way to cache the webview images myself, as some of them
may be used in the future in an imageview. Currently, I can find out when an
image will be loaded and get its url through the webview's
`shouldInterceptRequest`.
I've tried using Glide's `submit` call, but the loading is significantly
slower. I've also noticed that calling it this way still makes the request
check on the ui thread if the webview is valid before proceeding, which may
add notable overhead to so many requests. Is there any way to improve this?
My web response:
class FrostImageResponse(view: WebView, url: String) : WebResourceResponse("", "", null) {
val futureBitmap = GlideApp.with(view).asBitmap().load(url).submit()
override fun getData(): InputStream {
val bos = ByteArrayOutputStream()
futureBitmap.get().compress(CompressFormat.PNG, 0 /*ignored for PNG*/, bos)
val bitmapdata = bos.toByteArray()
return ByteArrayInputStream(bitmapdata)
}
}
| 0 |
# Environment
Windows build number: Microsoft Windows NT 10.0.18362.0
Windows Terminal version: 0.6.2951.0
# Steps to reproduce
1. Set the `historySize` of a terminal profile to a sufficiently large number. (I modified the default profiles in my testing)
* 32747 or larger for powershell
* 32797 or larger for wsl
2. Create a new terminal tab using the modified profile
3. Record the current reported terminal size
* Use `$Host.UI.RawUI.WindowSize.Width; $Host.UI.RawUI.WindowSize.Height` for powershell
* Use `tput cols; tput lines` for wsl
4. Resize the terminal window
5. Record the new reported terminal size
# Expected behavior
Resizing the terminal window should change the reported terminal dimensions.
Terminal resize behavior should be unaffected by historySize.
# Actual behavior
When the historySize profile setting is sufficiently large resizing the
terminal window does not change the reported terminal dimensions.
|
# Description of the new feature/enhancement
This one is a "nice to have", but I'd love to be able to stack tabs and tile
them side-by-side (ex. a powershell tab on one half, and a WSL tab on the
other half). This'd help my efficiency when I need to be testing my work on
Windows and Linux at the same time.
# Proposed technical implementation details (optional)
Effectively, I'd like something akin to Vivaldi's tab tiling at a minimum, but
control on the tier of say, i3wm would be amazing. I should be able to drag a
tab over another, and have them drop into a stack. I should then be able to
(in some context menu) be able to set up the layout of the windows in the
stack.
| 0 |
@griesemer suggested this was worth looking into, as does a TODO by @rsc in
syntax.go.
@josharian described some initial attempts at this last year on golang-dev.
@rsc also pointed out that a nil `[]*Node` takes up 3x as much space as a nil
`*NodeList`, so it might be desirable to use `*[]*Node` for variables that are
commonly nil.
I've been playing around with this with some success. One small gotcha I've
noticed is that the "Phase 2" and "Phase 3" typecheck calls can append new
Nodes to xtop, so those phases must not use `range` iterations otherwise
they'll stop prematurely without iterating over the newly appended Nodes.
Filing an issue to track discussion/progress.
|
1. What is a short input program that triggers the error?
package main
import "fmt"
func main() {
lg := 1 << 1
i := 1 << uint64(lg)
fmt.Printf("i = %v\n", i)
}
Note that the program compiles just fine if you were to inline the value of 'lg' in the
following line.
2. What is the full compiler output?
bits.go:5: internal compiler error: agen OREGISTER
3. What version of the compiler are you using? (Run it with the -V flag.)
8g version release.r57.1 8294
| 0 |
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
To not hide overflow of body & make things shift when scrollbar disappears.
## Current Behavior
Hides overflow of body.
## Steps to Reproduce (for bugs)
1. Have content within `<body>` tag that causes it to overflow or `<body>` has style of `overflow: visible`
2. Open select drop down
## Context
It messes with styling that relies on body having overflow content. Below is a
sample of what's happening on the demo site. Notice the scroll bar vanishing
as soon as the menu pops up.

## Your Environment
Tech | Version
---|---
Material-UI | v1.0.0-beta.24
React | v16.2.0
browser | 61.0.3163.79
|
### Description
The password field in android contains an eye icon that when clicked shows the
password (until released)
Thought it should have been implemented in the material ui too.
### Images & references
https://medium.com/@moyinoluwa/password-visibility-toggle-android-support-
library-revision-24-2-0-98b422087e5a
### Versions
* Material-UI: 0.17.0
* React: 15.4.2
* Browser: Chrome 57.0.2987.133 (64-bit)
| 0 |
In the following, the `hue` has no effect (seaborn 0.11.1 as well as current
master)
tips = sns.load_dataset("tips")
sns.boxplot(data=tips, y='tip', hue='smoker')
It takes effect if something like `x='sex'` is added.
Thanks for creating a great package.
|
# Problem
When only `y` is specified to `violinplot` it does not consider the argument
to `hue`.
tips = sns.load_dataset("tips")
sns.violinplot(data=tips, y='total_bill', hue='smoker')

# Expected
There should be created two plots, one where smoker is `yes` and one where
smoker is `no`.
# Example when `x` is specified
tips = sns.load_dataset("tips")
sns.violinplot(data=tips, x='day', y='total_bill', hue='smoker')

| 1 |
This was asked a long time ago, and I just ran into a similar need. It would
be nice to be able to easily make a filled step plot. The solutions I've come
up with are suboptimal.
http://www.mail-archive.com/matplotlib-
users@lists.sourceforge.net/msg13072.html
|
Hi,
I think the fill_between function should take a drawstyle option. It would be
both handy and consistent.
Here is a post from someone else requesting the feature, with a figure
illustrating why this is needed:
http://old.nabble.com/fill_between-with-drawstyle-steps--td30172277.html
thank you
| 1 |
Challenge Use a CSS Class to Style an Element has an issue.
User Agent is: `Mozilla/5.0 (Linux; Android 5.1.1; SM-T670 Build/LMY47X)
AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.89 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
My code:
<style>
.red-text {
color: red;
}
</style>
<h2 class="red-text">CatPhotoApp</h2>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
I have made all required changes, but it still says the h2 element isn't red.
I have tried entering the changes in a different order, and have tried
clearing browser history and cache. Nothing seems to fix the issue.
|
Challenge http://www.freecodecamp.com/challenges/waypoint-target-a-specific-
child-of-an-element-using-jquery has an issue. Please describe how to
reproduce it, and include links to screenshots if possible.
CODE:
$(".well:nth-child(2)").addClass("animated bounce");
No nth-child works (have tried 0, 1, 2, 3). 2 visibly works, but "The second
element in each of your well elements should bounce.
Visibly working (but not 'marked as correct'):
<script> $(document).ready(function() { $("#target1").css("color", "red");
$("#target1").prop("disabled", true); $("#target4").remove();
$("#target2").appendTo("#right-well"); $("#target5").clone().appendTo("#left-
well"); $("#target1").parent().css("background-color", "red"); $("#right-
well").children().css("color", "green"); $(".well:nth-
child(2)").addClass("animated bounce"); }); </script>
### jQuery Playground
#### #left-well
#target1 #target2 #target3
#### #right-well
#target4 #target5 #target6
| 0 |
Have a launch android emulator (or open the avd) UI available in IntelliJ like
iOS does
|
If no Android virtual device is running, you have to start it from the Android
AVD Manager. Would be good to have en entry in tools to open that, similar to
what Android Studio has (we should probably call it `Android AVD Manager`):

| 1 |
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
template and potentially more
##### ANSIBLE VERSION
$ ansible --version
ansible 2.2.1.0
config file = /opt/****/ansible.cfg
configured module search path = [ '/home/****/ansible']
##### CONFIGURATION
$ cat ansible.cfg | grep tmp
local_tmp = /opt/***/.ansible/tmp
remote_tmp = /opt/***/.ansible/tmp
$
##### OS / ENVIRONMENT
$ cat /etc/os-release
NAME="Red Hat Enterprise Linux Server"
VERSION="7.3 (Maipo)"
ID="rhel"
ID_LIKE="fedora"
VERSION_ID="7.3"
PRETTY_NAME="Red Hat Enterprise Linux"
ANSI_COLOR="0;31"
CPE_NAME="cpe:/o:redhat:enterprise_linux:7.3:GA:server"
HOME_URL="https://www.redhat.com/"
BUG_REPORT_URL="https://bugzilla.redhat.com/"
REDHAT_BUGZILLA_PRODUCT="Red Hat Enterprise Linux 7"
REDHAT_BUGZILLA_PRODUCT_VERSION=7.3
REDHAT_SUPPORT_PRODUCT="Red Hat Enterprise Linux"
REDHAT_SUPPORT_PRODUCT_VERSION="7.3"
##### SUMMARY
Files are writing to /tmp when remote_tmp and local_tmp is defined
##### STEPS TO REPRODUCE
- name: "{{ site }} - GENERATE JSON REPORT PER SITE STATS ONLY"
template:
src: "{{ role_path }}/templates/reports/sites/partial_table.j2"
dest: '{{ output_dir }}/reports/html/partial/{{ site }}.partial'
##### EXPECTED RESULTS
localhost : ok=360 changed=29 unreachable=0 failed=0
##### ACTUAL RESULTS
TASK [reports : *** - GENERATE JSON REPORT PER SITE STATS ONLY] ****************
fatal: [localhost]: FAILED! => {"changed": false, "failed": true, "msg": "[Errno 13] Permission denied: '/tmp/tmpuv61yn'"}
PLAY RECAP *********************************************************************
localhost : ok=360 changed=29 unreachable=0 failed=1
|
Hello,
I wanted to test ansible-2.0.0.
When I execute the command "ansible all -m ping", I have the following output.
ansible 2.0.0
config file = ansible2/conf/ansible.cfg
configured module search path = ansible-2.0.0/library
No config file found; using defaults
Loaded callback minimal of type stdout, v2.0
<GUEST01> ESTABLISH SSH CONNECTION FOR USER: None
An exception occurred during task execution. The full traceback is:
Traceback (most recent call last):
File "ansible2/lib/ansible/executor/process/worker.py", line 114, in run
self._shared_loader_obj,
File "ansible2/lib/ansible/executor/task_executor.py", line 119, in run
res = self._execute()
File "ansible2/lib/ansible/executor/task_executor.py", line 401, in _execute
result = self._handler.run(task_vars=variables)
File "ansible2/lib/ansible/plugins/action/normal.py", line 30, in run
results.update(self._execute_module(tmp=tmp, task_vars=task_vars))
File "ansible2/lib/ansible/plugins/action/__init__.py", line 405, in _execute_module
tmp = self._make_tmp_path()
File "ansible2/lib/ansible/plugins/action/__init__.py", line 211, in _make_tmp_path
result = self._low_level_execute_command(cmd, sudoable=False)
File "ansible2/lib/ansible/plugins/action/__init__.py", line 520, in _low_level_execute_command
rc, stdout, stderr = self._connection.exec_command(cmd, in_data=in_data, sudoable=sudoable)
File "ansible2/lib/ansible/plugins/connection/ssh.py", line 603, in exec_command
raise e
UnicodeEncodeError: 'ascii' codec can't encode character u'\ufeff' in position 309: ordinal not in range(128)

GUEST01| FAILED! => {
"failed": true,
"stdout": ""
Best regards.
| 0 |
Just to play safe it is better to place `"use strict"` inside function to
avoid concat issues in future.
Original
import {a} from './a.js';
Expected
define(["exports", "./a.js"], function(exports, _a) {
"use strict";
var a = _a.a;
});
Actual
"use strict";
define(["exports", "./a.js"], function(exports, _a) {
var a = _a.a;
});
The same is for UMD.
It is possible to fix it by placing `_moduleFormatter` transformer after
`useString`. But I am not sure that it is a good way.
|
> Issue originally reported by @hzoo in babel/babel-preset-env#91
{
"presets": [
"env", {
"targetPreset": "experimental-stage-3" // default to latest like it is currently,
"targets": {
"browsers": ["last 2 versions"]
},
"exclude": ["transform-regenerator"],
}
]
}
TLDR - figure out how we should include stage-3 plugins.
* * *
Oh man naming is hard: basically there's a difference between the "target
javascript" you want to write in. What is currently "targets" is the list of
environments you support (why didn't I just call it "environments" when the
preset is preset-env lol 🤔 ).
The values of this option could potentially be any year, latest, or stage 3
(basically the current official presets that we have). In reality I think the
only ones we care about would be `latest` and `stage 3`. The reason why we
didn't add stage-3 earlier was because I kept thinking about the latest spec
rather than forgetting that at stage-3 browser vendors will start
implementations. Many projects/companies choose to target stage-3 (and if you
are doing lower without codemods or serious consideration of the consequences
then there will be issues and that's why we have been discussing #4914 and
others).
| 0 |
Challenge use-hex-code-to-mix-colors has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36
(KHTML, like Gecko) Chrome/53.0.2785.101 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
<style>
.dodger-blue-text {
color: #1e90ff;
}
</style>
<h1 class="dodger-blue-text" style="color: rgb(30, 144, 255)">I am dodger blue!</h1>
|
Challenge use-hex-code-to-mix-colors has an issue.
User Agent is: `Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML,
like Gecko) Chrome/52.0.2743.116 Safari/537.36`.
Please describe how to reproduce this issue, and include links to screenshots
if possible.
<style>
.red-text {
color: #ff0000;
}
.green-text {
color: #00ff00;
}
.dodger-blue-text {
color: #1e90ff;
}
.orange-text {
color: #ffa500;
}
</style>
<h1 class="red-text">I am red!</h1>
<h1 class="green-text">I am green!</h1>
<h1 class="dodger-blue-text">I am dodger blue!</h1>
<h1 class="orange-text">I am orange!</h1>
```
Screenshot:

| 1 |
Make sure these boxes are checked before submitting your issue - thank you!
* I have checked the superset logs for python stacktraces and included it here as text if any
* I have reproduced the issue with at least the latest released version of superset
* I have checked the issue tracker for the same issue and I haven't found one similar
### Superset version
0.28.1
This bug did appear somewhere in the past 12 months or so. It's not recent,
and is unrelated to the many changes that appeared in 0.28.
### Expected results
There should be only one tooltip instance
### Actual results
Sometimes a tooltip get "stuck". Very similar to bugs that were fixed by
#2096.

### Steps to reproduce
I've been unable to find a recipe for consistent reproduction, but the bug
happens to me multiple times per day.
Browser: Chrome on a mac.
|
Hi Superset people! I need your wisdom once again. Is it even a Superset
issue? Or an nvd3 one?
Is there any chance for a fix or a workaround? Thanks in advance!
* I have checked the superset logs for python stacktraces and included it here as text if any
* I have reproduced the issue with at least the latest released version of superset
* I have checked the issue tracker for the same issue and I haven't found one similar
### Superset version 0.15.0 and 0.15.1
### Expected results
Legend not burning into the video memory.
### Actual results

### Steps to reproduce
It happens almost every time if I have the mouse cursor over the chart while
the chart is (re)loading.
| 1 |
### 💻
* Would you like to work on a fix?
### How are you using Babel?
@babel/cli
### Input code
// не строгий режим
function mixArgs(first, second = "b") {
var __es_vNaN = Array.prototype.sort.call("{}".split("writable", 10000));
console.log(arguments.length);
Number.parseFloat("+0");
console.log(first === arguments[0]);
console.log(second === arguments[1]);
first = "c";
second = "d";
console.log(first === arguments[0]);
console.log(second === arguments[1]);
}
mixArgs("a");
Here is the REPL
### Configuration file name
babel.config.json
### Configuration
{
"sourceType": "unambiguous",
"presets": ["@babel/preset-env"],
"plugins": [
"@babel/plugin-transform-runtime"
]
}
### Current and expected behavior
The origin code run by node print
1
true
false
false
false
But the transpiled code run by node print
1
true
false
true
false
### Environment
* babel
* * ├── @babel/cli@7.17.0=6
* * ├── @babel/generator@7.17.3
* * ├── @babel/plugin-transform-runtime@7.17.0
* * ├── @babel/preset-env@7.16.11
* Node: [v17.3.0]
* npm version [8.5.2]
* os [ubuntu 20.04]
### Possible solution
_No response_
### Additional context
_No response_
|
> Issue originally made by Joe Lencioni (lencioni)
### Bug information
* **Babel version:** 6.6.5 (babel-core 6.7.0)
* **Node version:** 5.8.0
* **npm version:** 3.7.3
### Options
{
"plugins": [
"babel-plugin-transform-es2015-destructuring",
"babel-plugin-transform-es2015-modules-commonjs",
"babel-plugin-transform-es3-property-literals",
]
}
### Input code
import foo from 'foo';
const [x] = bar;
### Description
I have created a repro case for this issue at
https://github.com/lencioni/babel-es3-issue-repro
* * *
This repo contains a repro case for a possible bug in Babel involving
`babel-plugin-transform-es2015-destructuring`,
`babel-plugin-transform-es2015-modules-commonjs`, and
`babel-plugin-transform-es3-property-literals`.
The es3-property-literals plugin normally converts keys that are like
`default`
to be quoted, which provides better compatibility for browsers that do not
support ES5 (e.g. IE8). This seems to work when the source code contains the
property that needs to be quoted, but when used in conjunction with these
other
two plugins in some situations the property is not quoted.
In `src/okay.js` we have the following code:
import foo from 'foo';
const bar = [1, 2, 3];
const [x] = bar;
Part of which gets transpiled to the following line in `build/okay.js`:
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
In `src/bad.js` we have the following code:
import foo from 'foo';
const [x] = bar;
Part of which gets transpiled to the following line in `build/bad.js` (note
the
missing quotes around `default`:
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
| 0 |
Hey guys, I'm from the Angular team and we are currently trying to use the
TypeScript compiler to compile the project to system.register format. In the
process, I noticed a bug with the output. I've cloned your branch
**release1.5** to make sure that it wasn't just a bug on our end.
Here is a small example that I have composed independent of the Angular
project.
Export file with super class:
/// foo.ts
export class Foo {
a: string;
}
Import file with sub class:
/// bar.ts
import {Foo} from './foo';
export class Bar extends Foo {
b: string;
}
System.register format output:
/// bar.js
var __extends = (this && this.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};System.register(['./foo'], function(exports_1) {
var foo_1;
var Bar;
return {
setters:[
function (_foo_1) {
foo_1 = _foo_1;
}],
execute: function() {
Bar = (function (_super) {
__extends(Bar, _super);
function Bar() {
_super.apply(this, arguments);
}
return Bar;
})(foo_1.Foo);
exports_1("Bar", Bar);
}
}
});
The **__extends** function is being defined outside of the context of
System.register. Systemjs uses a number of regex expressions to determine the
format of the file that it is reading. It won't recognize this output.
I would suggest modifying the output as so:
System.register(['./foo'], function(exports_1) {
var __extends = (window && window.__extends) || function (d, b) {
for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p];
function __() { this.constructor = d; }
__.prototype = b.prototype;
d.prototype = new __();
};
var foo_1;
var Bar;
return {
setters:[
function (_foo_1) {
foo_1 = _foo_1;
}],
execute: function() {
Bar = (function (_super) {
__extends(Bar, _super);
function Bar() {
_super.apply(this, arguments);
}
return Bar;
})(foo_1.Foo);
exports_1("Bar", Bar);
}
}
});
My systemjs module is version @0.18.1
|
**TypeScript Version:** 1.8.x
The tsconfig.json can list compileOnSave which is nicely supported in VS. To
make that work on VS Code as well the necessary support should come from the
tsserver. We could either send the tsserver and event when a file is saved or
the tsserver could make use of its file eventing to detect the case.
| 0 |
Consider enabling tabs inlined in the title bar by default, and also showing a
single visible tab for the starting shell (e.g. always show tabs, even if
there's only one process.)
This might reduce the every other day issue or comment asking why terminal
"doesn't work" because they don't know to press ctrl+T (understandably)
|
Followup to #430. Here's what I'm thinking.
* `alwaysShowTabs` -> `true`
* `experimental_showTabsInTitlebar` -> `true`
* always include Windows Powershell (`background`: `#012456`)
* include PowerShell Core separately (`background`: unset)
* drop `Courier New` for powershell
| 1 |
# 🌟 TAPAS (Weakly Supervised Table Parsing via Pre-Training)
## Model description
**TAPAS** ArXiV Paper Google AI Blog, an approach to question answering over
tables without generating logical forms. TAPAS trains from weak supervision,
and predicts the denotation by selecting table cells and optionally applying a
corresponding aggregation operator to such selection. TAPAS extends BERT’s
architecture to encode tables as input, initializes from an effective joint
pre-training of text segments and tables crawled from Wikipedia, and is
trained end-to-end. We experiment with three different semantic parsing
datasets, and find that TAPAS outperforms or rivals semantic parsing models by
improving state-of-the-art accuracy on SQA from 55.1 to 67.2 and performing on
par with the state-of-the-art on WIKISQL and WIKITQ, but with a simpler model
architecture. We additionally find that transfer learning, which is trivial in
our setting, from WIKISQL to WIKITQ, yields 48.7 accuracy, 4.2 points above
the state-of-the-art.
## Open source status
* [ X ] the model implementation is available: GitHub repo
* [ X ] the model weights are available: in the "Data" section at their GitHub page
* [ X ] who are the authors: Jonathan Herzig, Paweł Krzysztof Nowak, Thomas Muller, Francesco Piccinno, Julian Martin Eisenschlos
|
## Environment info
* `transformers` version: 4.3.2
* Platform: Linux-5.4.0-66-generic-x86_64-with-debian-buster-sid
* Python version: 3.7.9
* PyTorch version (GPU?): 1.7.1 (True)
* Tensorflow version (GPU?): not installed (NA)
* Using GPU in script?:
* Using distributed or parallel set-up in script?: No
### Who can help
@sgugger, @patil-suraj
## Information
Model I am using (Bert, XLNet ...): Bert
The problem arises when using:
* the official example scripts: (give details below)
* my own modified scripts: (give details below)
The tasks I am working on is:
* an official GLUE/SQUaD task: (give the name)
* my own task or dataset: (give details below)
## To reproduce
Steps to reproduce the behavior:
1. Run run_mlm.py with pdb break point at line 409.
2. see value for `tokenized_datasets['train'][0]`
ipdb> tokenized_datasets['train'][0]
{'attention_mask': ..., 'input_ids': [2, 11699, 6139, 23923, 6354, 6216, 3, 2, 124, 6149, 6228, 6164, 5125, 27479, 6228, 11699, 6139, 23923, 6354, 6216, 11961, 9121, 9804, 10602, 10293, 5328, 6721, 121, 6997, 15520, 16117, 10602, 11302, 5328, 6721, 121, 6997, 13014, 6177, 22111, 25147,
6189, 6106, 6315, 6110, 5084, 5158, 6291, 12836, 6108, 15512, 6726, 18139, 25596, 12701, 6291, 6106, 6315, 6616, 112, 5171, 113, 4363, 6380, 14946, 13769, 13928, 17518, 10216, 12299, 12571, 12850, 26355, 5315, 6457, 6117, 6303, 6213, 19358, 117, 122, 5201, 6361, 6211, 6377, 6312, 22259, 6631, 9268, 112, 10538, 113, 10728, 22278, 117, 14870, 13905, 142, 15214, 112, 10538, 113, 10728, 22278, 117, 14870, 14934, 7575, 10524, 186, 14921, 30912, 10758, 118, 10022, 680, 6275, 117, 181, 9860, 186, 14921, 30912, 10758, 136, 20107, 18973, 6358, 118, 3, 2, 10022, 7539, 25147, 6189, 116, 24690, 6915, 128, 116, 11134, 14216, 15650, 15373, 117, 13531, 20100, 117, 10028, 6132, 117, 127, 112, 124, 3866, 113, 15798, 15650, 15373, 117,
13531, 20100, 117, 9840, 6403, 117, 23999, 25006, 6131, 112, 14604, 113, 5084, 15466, 112, 5171, 113, 4363, 6380, 14946, 6213, 13579, 10393, 11023, 6187, 9218, 13014, 6236, 23534, 4587, 12827, 11069, 9422, 25686, 9112, 9220, 12112, 13538, 10112, 9427, 9215, 9260, 19036, 10393, 13514, 6187, 10112, 14882, 6130, 20150, 9279, 118, 3, 2, 14233, 15466, 18609, 16080, 118, 3, 2, 25147, 6189, 24864, 28007, 13581, 6149, 6228, 6164, 5125, 27479, 6228, 124, 5134, 16109, 28372, 3814, 6224, 20116, 6158, 12221, 6595, 105, 3, 2, 5466, 11794, 10393, 4700, 6224, 12819, 10694, 6187, 4671, 6628, 6119, 5502, 24468, 5743, 6125, 7111, 18452, 105, 3, 2, 14368, 6164, 5125, 27479, 6228, 6309, 6221, 6139, 4174, 6428, 6243, 167, 11699, 6139, 13295, 16589, 18619, 15924, 6131, 22573, 19515, 11914, 23850, 11914, 11512, 11346, 25763, 5134, 16109, 28372, 5134, 16109, 28372, 7031, 6114, 6114, 6626, 7020, 118, 3, 2, 5476, 6214, 116, 4121, 7788, 6107, 7788, 118, 4822, 6503, 6236, 15053, 4606, 9117, 118, 3, 2, 5676, 26156, 4973, 7088, 6114, 23122, 6114, 25444, 6422, 4218, 14246, 11920, 6147, 12097, 4011, 9117, 118, 3, 2, 4417, 25703, 9205, 9271, 9165, 19235, 4202, 6115, 14810, 6187, 19915, 6164, 4839, 6361, 11721, 4378, 7063, 15482, 9156, 11976, 30627, 9291, 3788, 19018, 20146, 4202, 9172, 118, 9868, 16712, 29634, 6115, 5206, 6203, 4469, 5294, 11019, 10250, 4973, 6284, 6203, 9691, 118, 3, 2, 9310, 10574, 5330, 9799, 11042, 13237, 6149, 9237, 118, 3, 2, 4378, 7063, 9126, 9271, 9242, 9822, 6236, 15472, 23041, 16135, 18119, 15314, 118, 3, 2, 5134, 6341, 6187, 9159, 14990, 5656, 4241, 14059, 6139, 4913, 12802, 9822, 9181, 9841, 4788, 18037, 116, 14059, 10825, 5087, 5178, 11699, 6213, 15171, 6333, 9242, 4645, 10212, 9691, 118, 3, 2, 9620, 10021, 11699, 6139, 17626, 6236, 12258, 4378, 7063, 6185, 16269, 26623, 30683, 12901, 118, 3, 2, 18276, 6130, 4378, 7063, 9126, 11699, 6187, 9159, 9242, 9319, 13793, 17451, 6260, 4184, 9242, 17561, 10724, 20756, 12126, 4789, 9172, 118, 9567, 4144, 12062, 10780, 5466, 6803, 4202, 4378, 7063, 9126, 4422, 12303, 6164, 9165, 10350, 571, 9467, 20853, 7177, 11947, 10441, 9270, 18480, 3795, 9207, 12098, 11725, 118], 'special_tokens_mask': ... , 'token_type_ids': ...}
When `group_texts` is `map`ed to `tokenized_datasets`, whose examples already
contain special tokens (e.g. [CLS] and [SEP]), the mapped results have the
following format: `[CLS] ... [SEP][CLS] ... [SEP][CLS] ... [SEP]`
## Expected behavior
The output of `group_texts` applied `tokenized_datasets` has the following
format `[CLS] ... [SEP]` or `[CLS] ... [SEP] ... [SEP]`.
The current input format is different from the original implementation,
ELECTRA for example. Is this a trivial issue? I think the downstream task
performance of the model pretrained with the current script could tell if this
is a serious bug or not. Could someone share the results?
| 0 |
# Feature request
`next` creates a `webpack` config and it'd be nice to have access to that.
## Is your feature request related to a problem? Please describe.
Certain other tools, such as `react-styleguidist`, need to know how `webpack`
is configured to work. But `next` abstracts this away and doesn't put it
together until it spins up, so just `require`'ing a static file won't work.
So, `styleguidist` can't share the `webpack` config that `next` uses.
## Describe the solution you'd like
Ideally, it'd be something like the existing `next/whatever` imports.
const getWebpackConfig = require('next/webpack');
const webpackConfig = getWebpackConfig({ /* Some information on which one to get (client, server, build, dev) */ });
## Describe alternatives you've considered
It's entirely possible to make an alternative `webpack.config.js`, but there's
no guarantee that it'll stay in sync between versions or with add-on's, and it
requires knowledge of what `next` is doing behind the scenes.
Another idea was to have `next.config.js` write the config to a file on
require, but that can't copy over the functions and class instances in the
config, since they are not serializable.
Since it's not bundled, stuff from `next` can be selectively required to kinda
get the config
const loadConfig = require('next-server/next-config');
const getBaseWebpackConfig = require('next/dist/build/webpack-config').default;
const config = loadConfig(__dirname);
getBaseWebpackConfig(__dirname, {config, entrypoints: {}}).then(webpackConfig =>
console.log('Config GET!', webpackConfig),
);
but that's messy, incomplete, depends on internals, asynchronous, and can
entirely break for any number of reasons.
## Additional context
|
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
I expected the promise returned from Router.push('/myurl') would only resolve
after the new page had been navigated to. This is useful for triggering UI
events after the transition like: Router.push('/myurl').then(() =>
showModal('Hello'));
## Current Behavior
Currently, the promise often resolves before that page transition is
completed. This is especially easy to see in development mode, since the
transition often takes considerable time while the next page is building.
## Steps to Reproduce (for bugs)
1. Put some code like Router.push('/myurl').then(() => window.alert('Premature Alert?')) to be triggered by a button click.
2. Add something that will take some time to getInitialProps for myurl.js
3. Click the button, and, see if the alert arrives before the new page is rendered.
## Context
In particular, I'm trying to put together a login flow where the app shows a
"loading..." message while the page is being navigated to the next
destination, and then disappears after the new page is loaded.
## Your Environment
Tech | Version
---|---
next | 4.1.4
node | 8.8.1
OS | OSX
browser | Chrome
etc |
| 0 |
Selecting certain columns from certain SQL queries frequently returns the
following error: `Unknown exception: Cannot coerce[java.util.ArrayList] to
VARCHAR`
Which columns/queries that are affected seems to be non-deterministic, though
I can always make a given query work by excluding particular columns. Eg. for
one query, I cannot select column X without having an error returned, but for
a different query I cannot select column Y. Sometimes a query can work for
some time, and then start failing, despite pulling in the exact same set of
data. In the case of this error, the columns in question seem to be always
empty (determined by cross-referencing the column/query in question over the
JSON query API).
Doing a `select *` very frequently returns this error for me.
|
Druid SQL doesn't support multi-value columns right now. They kind of work
sometimes but not always.
* They are reported as VARCHAR which does not give the user a hint that they are multi-value.
* ~~If you select one without aggregation then you get an error (#4637) as the runtime tries to cast them to string but cannot.~~ Fixed by #6462.
* If you group on one you get the standard Druid multi-value grouping behavior, which is surprising in the context of SQL.
* Since Druid SQL thinks they're VARCHARs, you write filters on them as if you were filtering on a string column. But the planner may do some inappropriate optimizations (like optimize `a = 'x' AND a = 'y'` to `FALSE` even though a multi-value column could have both values).
* I'm not sure what happens when a multi-value column is involved in a semi-join but I'm sure it's not anything good.
I'm not sure how to best express multi-value columns in SQL. Ideas are
welcome. See also a calcite dev thread: https://www.mail-
archive.com/dev@calcite.apache.org/msg02846.html
| 1 |
When I am using DropDownMenu and as `menuStyle` I am setting transparency but
it is being set for a div whose role is `menu` but a "div" above that is
actually controlling the transparency.
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Make the Menu transparent
## Current Behavior
The menu is not becoming transparent.
## Steps to Reproduce (for bugs)
https://codesandbox.io/s/o544j10l39
1. 2. 3. 4.
## Context
## Your Environment
Tech | Version
---|---
Material-UI | 0.20
React | 16.2.0
browser | chrome
etc |
|
Hi,
I was wondering if it is possible to use keyboard (tab / arrow key) navigation
inside a modal dialog and not have it "bubble up" beyond the dialog.
Currently when I open a dialog with modal set it true, and attempt to use the
tab key to navigate between elements, it still gives focus to elements outside
of the dialog. Is this something I need to add handlers for specifically on
any dialog I have?
Thanks,
Matt
| 0 |
**Describe the bug**
Unable to bundle TS code that uses the DOM.
**To Reproduce**
1. Create a `test.ts` file with contents:
document.getElementById("comments-container");
2. Create `tsconfig.json` with contents:
{
"compilerOptions": {
"target": "ES2016",
"module": "commonjs",
"lib": ["DOM", "ESNext"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}
3. Run the `deno bundle` command:
deno bundle --unstable -c tsconfig.json test.ts dist/test.js
This will fail with the following error:
Bundle file:///Users/renato/programming/projects/static-website-reddit-comments/test.ts
Check file:///Users/renato/programming/projects/static-website-reddit-comments/test.ts
error: AssertionError: "data" is unexpectedly null for "asset:///lib.dom.d.ts".
at assert (deno:cli/tsc/99_main_compiler.js:53:13)
at Object.getSourceFile (deno:cli/tsc/99_main_compiler.js:377:9)
at findSourceFile (deno:cli/tsc/00_typescript.js:104355:29)
at deno:cli/tsc/00_typescript.js:104232:85
at getSourceFileFromReferenceWorker (deno:cli/tsc/00_typescript.js:104199:34)
at processSourceFile (deno:cli/tsc/00_typescript.js:104232:13)
at processRootFile (deno:cli/tsc/00_typescript.js:104055:13)
at deno:cli/tsc/00_typescript.js:103004:25
at Object.forEach (deno:cli/tsc/00_typescript.js:382:30)
at Object.createProgram (deno:cli/tsc/00_typescript.js:103003:24)
**Expected behavior**
The `Deno bundle` command should succeed.
It worked before I upgraded to 1.5.0.
**Versions**
▶ deno --version
deno 1.5.0
v8 8.7.220.3
typescript 4.0.3
|
getting this error
AssertionError: "data" is unexpectedly null for "asset:///lib.dom.d.ts".
at assert (deno:cli/tsc/99_main_compiler.js:53:13)
at Object.getSourceFile (deno:cli/tsc/99_main_compiler.js:377:9)
at findSourceFile (deno:cli/tsc/00_typescript.js:104355:29)
at deno:cli/tsc/00_typescript.js:104232:85
at getSourceFileFromReferenceWorker (deno:cli/tsc/00_typescript.js:104199:34)
at processSourceFile (deno:cli/tsc/00_typescript.js:104232:13)
at processRootFile (deno:cli/tsc/00_typescript.js:104055:13)
at deno:cli/tsc/00_typescript.js:104630:21
at Object.forEach (deno:cli/tsc/00_typescript.js:382:30)
at processLibReferenceDirectives (deno:cli/tsc/00_typescript.js:104625:16)
to reproduce
create A.ts with writeTextFileSync
insert tripple slash reference with lib=dom
import dynamically A.ts
| 1 |
# Environment
Windows build number: 1903 for cmd
Windows Terminal version (if applicable): latest from the Microsoft store
Any other software? N/A
# Steps to reproduce
Copy any text using keyboard shortcut `ctrl + C` and try to paste it using
`ctrl + V` shortcut.
# Expected behavior
This should paste the copied text in the command line.
# Actual behavior
After typing `Ctrl + V` only `^v` is showing.
|
# Environment
Windows build number: [Version 10.0.19008.1000]
Windows Terminal version (if applicable): 0.6.2951.0
Any other software?
Ubuntu 18.04.3 LTS through WSL v2 / Windows Build 19008
# Steps to reproduce
1. Use ssh to connect to a linux server through the Terminal App running Ubuntu with WSL v2.
2. Start tmux on the linux server you are connected to through SSH
3. Run `find /`
4. Wait a few seconds (5-10)
5. Attempt to CTRL+C
# Expected behavior
I expect that immediately, or after a few seconds at most, the CTRL+C command
interupts the command and scrolling output from the find command in the
terminal.
# Actual behavior
It seems that the terminal is unable to handle the fast/large amount of text
output from the find command. Looking at the time that tmux shows in the
bottom-right of the screen, it can be minutes "behind" in rendering the text
output.
Other notes:
* Running in tmux locally, without going through SSH, it takes ~2 seconds for a CTRL+C to come through
* Running without tmux locally, without going through SSH, CTRL+C is immediate
* Running without tmux but with SSH, executing a find on a remote linux server, it takes about 5-7 seconds for the CTRL+C to come through.
So it seems only the combination of being connected to another server through
SSH, running a tmux there, and then having a lot of text output causes the
issue where the terminal is very far (minutes) behind with rendering the text
output.
| 0 |
Code to reproduce -
from sklearn.tree import DecisionTreeClassifier
from sklearn.tree import export_graphviz
import numpy as np
dtc = DecisionTreeClassifier().fit(np.random.random_sample((20, 2)), np.zeros((20, 1)))
export_graphviz(dtc, filled=True)
This is because the `max_impurity` and `min_impurity` are the same for a
single node tree (`colors['bounds'][0]` == `colors['bounds'][1]`).
We should set the color in this case to a single value directly.
|
Example:
`from sklearn import tree`
`clf = tree.DecisionTreeClassifier()`
`clf.fit([[0]],[1])`
`tree.export_graphviz(clf, filled=True)`
We'll get error in line 160 of sklearn/tree/export.py:
`alpha = int(np.round(255 * ((value - colors['bounds'][0]) /
(colors['bounds'][1] - colors['bounds'][0])), 0))`
> ValueError: cannot convert float NaN to integer
Basically we will get zero division, because `colors['bounds'][0]` equals
`colors['bounds'][1]`.
| 1 |
### Describe the issue:
np.abs(np.int64(-9223372036854775808)) -> -9223372036854775808
### Reproduce the code example:
np.abs(np.int64(-9223372036854775808)) # -> -9223372036854775808
### Error message:
_No response_
### NumPy/Python version information:
1.23.0 3.10.5 | packaged by conda-forge | (main, Jun 14 2022, 07:03:09) [Clang
13.0.1 ]
### Context for the issue:
_No response_
|
Python:
In [117]: abs(-2147483646)
Out[117]: 2147483646
In [118]: abs(-2147483647)
Out[118]: 2147483647
In [119]: abs(-2147483648)
Out[119]: 2147483648L
In [120]: abs(-2147483649)
Out[120]: 2147483649L
In [121]: abs(-2147483650)
Out[121]: 2147483650L
NumPy:
In [93]: absolute(array([-2147483646]))
Out[93]: array([2147483646])
In [94]: absolute(array([-2147483647]))
Out[94]: array([2147483647])
In [95]: absolute(array([-2147483648]))
Out[95]: array([-2147483648])
In [96]: absolute(array([-2147483649]))
Out[96]: array([2147483649], dtype=int64)
In [97]: absolute(array([-2147483650]))
Out[97]: array([2147483650], dtype=int64)
In C this is undefined because abs() returns an int and there's no
+2147483648, but NumPy should convert to int64? and then
`absolute(array(-2**63))` should convert to object array with longs instead of
returning -9223372036854775808?
Related to #593?
| 1 |
### Bug report
Normally, systemwide configuration files at not completely ignored just
because a local/user configuration file exists. But MPL will ignore default
configuration values in /etc/matplotlibrc if a user matplotlibrc is found.
The documentation states that user configuration files are searched first,
which, if you think about it, only makes sense if the configuration files are
all _mutually exclusive_. But, this is not stated or acknowledged in the
documentation, elsewhere. Since mutual exclusivity is abnormal behavior for
configuration files, can you please, at least, make this more clear in the
documentation?
Is it possible to implement more conventional behavior where the system-wide
defaults are always read, if they exist, and the user-specific or local
configurations override them?
|
Only one matplotlibrc file is loaded instead of loading them in order of
decreasing scope. So when I added a matplotlibrc file in my home directory it
unexpectedly changed the backend that was being set in
`INSTALL/matplotlib/mpl-data/matplotlibrc` because that file was no longer
being loaded. I expected matplotlib to load the global (install) config and
then apply my config on top of that.
| 1 |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.1
* Operating System version: windows 7
* Java version: 1.8
### Steps to reproduce this issue
1. start 2 provders, and 1 consumer consumes providers.
2. stop one of the providers.
3. consumer errors, consumer will reconnect the offline provider.
Pls. provide [GitHub address] to reproduce this issue.
### Expected Result
What do you expected from the above steps?
### Actual Result
What actually happens?
when the Peovider stopped, the ReconnectTimerTask should be destroyed.
If there is an exception, please attach the exception trace:
dubbo-client-idleCheck-thread-1 ERROR header.ReconnectTimerTask: [DUBBO] Fail to connect to HeaderExchangeClient [channel=org.apache.dubbo.remoting.transport.netty4.NettyClient [172.23.66.113:0 -> /172.23.66.113:20880]], dubbo version: 2.7.1, current host: 172.23.66.113
org.apache.dubbo.remoting.RemotingException: client(url: dubbo://172.23.66.113:20880/com.oppo.provider.DemoService?anyhost=true&application=sample-consumer&bean.name=com.oppo.provider.DemoService&category=providers&check=false&codec=dubbo&default.deprecated=false&default.dynamic=false&default.lazy=false&default.register=true&default.sticky=false&deprecated=false&dubbo=2.0.2&dynamic=false&generic=false&heartbeat=60000&interface=com.oppo.provider.DemoService&lazy=false&methods=sayHello&pid=15396&protocol=dubbo®ister=true®ister.ip=172.23.66.113&release=2.7.1&remote.application=sample-provider&remote.timestamp=1561346085864&side=consumer&sticky=false&timeout=3000×tamp=1561431358005) failed to connect to server /172.23.66.113:20880, error message is:Connection refused: no further information: /172.23.66.113:20880
at org.apache.dubbo.remoting.transport.netty4.NettyClient.doConnect(NettyClient.java:131)
at org.apache.dubbo.remoting.transport.AbstractClient.connect(AbstractClient.java:186)
at org.apache.dubbo.remoting.transport.AbstractClient.reconnect(AbstractClient.java:242)
at org.apache.dubbo.remoting.exchange.support.header.HeaderExchangeClient.reconnect(HeaderExchangeClient.java:152)
at org.apache.dubbo.remoting.exchange.support.header.ReconnectTimerTask.doTask(ReconnectTimerTask.java:49)
at org.apache.dubbo.remoting.exchange.support.header.AbstractTimerTask.run(AbstractTimerTask.java:87)
at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelTimeout.expire(HashedWheelTimer.java:648)
at org.apache.dubbo.common.timer.HashedWheelTimer$HashedWheelBucket.expireTimeouts(HashedWheelTimer.java:727)
at org.apache.dubbo.common.timer.HashedWheelTimer$Worker.run(HashedWheelTimer.java:44
9)
at java.lang.Thread.run(Thread.java:748)
Caused by: io.netty.channel.AbstractChannel$AnnotatedConnectException: Connection refused: no further information: /172.23.66.113:20880
at sun.nio.ch.SocketChannelImpl.checkConnect(Native Method)
at sun.nio.ch.SocketChannelImpl.finishConnect(SocketChannelImpl.java:717)
at io.netty.channel.socket.nio.NioSocketChannel.doFinishConnect(NioSocketChannel.java:325)
at io.netty.channel.nio.AbstractNioChannel$AbstractNioUnsafe.finishConnect(AbstractNioChannel.java:340)
at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:635)
at io.netty.channel.nio.NioEventLoop.processSelectedKeysOptimized(NioEventLoop.java:582)
at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:499)
at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:461)
at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:884)
at io.netty.util.concurrent.FastThreadLocalRunnable.run(FastThreadLocalRunnable.java:30)
... 1 more
Caused by: java.net.ConnectException: Connection refused: no further information
... 11 more
|
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.4.1
* Java version: 1.8
### Actual Result
dubbo/dubbo-common/src/main/java/org/apache/dubbo/common/utils/NetUtils.java
Line 497 in f89a1a8
| throw new IllegalArgumentException("If you config ip expression that
contains '*' or '-', please fill qulified ip pattern like
234e:0:4567:0:0:0:3d:*. ");
---|---
dubbo/dubbo-
common/src/main/java/org/apache/dubbo/common/utils/ReflectUtils.java
Line 1207 in f89a1a8
| * Find the hierarchical types form the source {@link Class class} by
specified {@link Class type}.
---|---
### Expected Result
qulified ==> qualified
form ==> from
| 0 |
http://typescript.codeplex.com/workitem/488
"use strict";
class SomeClass {
public get someProperty(): string {
return "some value";
}
}
var someInstance = new SomeClass();
someInstance.someProperty = "another value"; //Run-time error. ECMAScript 5.1 - 11.13.1
|
Some properties in JavaScript are actually read-only, i.e. writes to them
either fail silently or cause an exception. These should be modelable in
TypeScript.
Previous attempts to design this have run into problems. A brief exploration:
interface Point {
x: number;
y: number;
}
interface ImmutablePoint {
readonly x: number;
readonly y: number;
}
var pt: ImmutablePoint = { x: 4, y: 5 }; // OK, can convert mutable to non-mutable
pt.x = 5; // Error, 'pt.x' is not a valid target of assignment
var pt2: Point = pt; // Error, cannot convert readonly 'x' to mutable 'x'
// Possibly bad behavior
var pt3: Point = { x: 1, y: 1 };
var pt4: ImmutablePoint = pt3; // OK
pt3.x = 5; // pt4.x is also changed?
// Really bad behavior
/** This function was written in TypeScript 1.0 **/
function magnitudeSquared(v: { x: number; y: number }) {
return v.x * v.x + v.y * v.y;
}
// Now try to use it with ImmutablePoint
console.log(magnitudeSquared(pt)); // Error, cannot use readonly object in non-readonly call
Possible solutions?
* Allow bivariance of mutability: this is very unsound
* Something else clever? C++ did not do well with const contamination
| 1 |
When you hover over the buttons, they shift and the right button loses the
rounded corners.
http://jsfiddle.net/BA4zM/147/
I have confirmed using v2.0.4 of bootstrap.js this issue does not happen.
|
http://jsfiddle.net/JEBdk/5/
tooltip or popover on btn-group. the btn-group is not display correctly!
the last btn have not round corners and between the btn's is a space.
my suggestion, by generating the tip or popover on the end of document .
| 1 |
$ env | grep GO
GOARCH=amd64
GOROOT=/home/nigeltao/go
GOOS=linux
$ cat main.go
package main
import "net"
func main() {
net.Dial("unix", "", "/tmp/.X11-unix/X0")
}
$ 6g main.go && 6l main.6
$ 6prof ./6.out
ptrace waitpid: unexpected new tid 8827 status 0x137f
|
What steps will reproduce the problem?
1. Cross-compile for linux/arm5.
2. Make a network request. My test harness for this bug was
http://play.golang.org/p/drwd1JwnTd
What is the expected output?
Success or failure
What do you see instead?
Hang
Which compiler are you using (5g, 6g, 8g, gccgo)?
5g
Which operating system are you using?
OS X 10.8.4
Which version are you using? (run 'go version')
go version devel +f31759c38a32 Mon Sep 23 13:19:08 2013 -0400 darwin/amd64
hg bisect shows that this bug was introduced by
https://code.google.com/p/go/source/detail?r=7afd81b7fe122e743f0db88f538eb3b4004be650
Please provide any additional information below.
I don't know whether cross-compilation or linux/arm5 is necessary; it is just how I
reproduced it here. There may also be something else unusual about my setup here.
Compiling for host (OS X) does not reproduce the problem, including with CGO disabled.
Let me know what other info I can provide.
| 0 |
For example when doing a transpose roundtrip-- right now type information is
lost
|
Could be called to recover types after `df.T.T`
| 1 |
# Description of the new feature/enhancement
Terminal should support ZModem upload/download. ZModem is a friction-free way
to transfer files up to 4GB in size in a terminal session without using other
tools.
# Proposed technical implementation details (optional)
Add support for ZModem
|
# Summary of the new feature/enhancement
For terminals which support zmodem protocol (like Xshell), one can use lrzsz
to upload and download files from remote server directly through ther
terminal, or even drag and drop files to upload. It will be great if Windows
Terminal can support this protocol.
# Proposed technical implementation details (optional)
Unfortunately I cannot provide technical details. But I'd like to say thants
for your great work.
| 1 |
**Describe the bug**
import error in version 128
_**Code**_
export default class LoadLib {
constructor() {
const _base = 'https://cdn.jsdelivr.net/npm/three@0.128.0/'
this.url = _base + 'build/three.module.js'
this._base = _base + 'examples/jsm/'
this._obj = {
BufferGeometryUtils: this._base + 'utils/BufferGeometryUtils.js',
CopyShader: this._base + "shaders/CopyShader.js",
EffectComposer: this._base + "postprocessing/EffectComposer.js",
RenderPass: this._base + "postprocessing/RenderPass.js",
ShaderPass: this._base + "postprocessing/ShaderPass.js",
VignetteShader: this._base + "shaders/VignetteShader.js",
UnrealBloomPass: this._base + "postprocessing/UnrealBloomPass.js",
}
this.start().then()
}
async start() {
const THREE = await import(this.url)
const T3 = {}
for (let i in THREE) {
T3[i] = THREE[i]
}
window.THREE = T3
for (let i in this._obj) {
const f = await import(this._obj[i])
window.THREE = { ...window.THREE, ...f }
}
}
it runs very good until ver: 0.128
the error shows

it is the import script error, in version 0.128

in ver 0.127 it works correctly

|
With version 128, the following code:
<script type="module">
import * as THREE from 'https://unpkg.com/three@0.128.0/build/three.module.js';
import { OrbitControls } from 'https://unpkg.com/three@0.128.0/examples/jsm/controls/OrbitControls.js';
</script>
causes the following error:
Uncaught TypeError: Failed to resolve module specifier "three". Relative references must start with either "/", "./", or "../".
It worked fine in 127 though.
| 1 |
[Enter steps to reproduce below:]
1. ...
2. ...
**Atom Version** : 1.0.0
**System** : Microsoft Windows 8.1 Enterprise
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.
(C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-
window.js:149:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction
(C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-
server.js:116:18)
at EventEmitter.
(C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-
server.js:208:14)
at emitMany (events.js:108:13)
At C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\app.asar\src\browser\atom-window.js:149:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\app.asar\src\window-event-handler.js:150:33)
at HTMLDocument.handler (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\Adrian\AppData\Local\atom\app-1.0.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
### Commands
-0:28.4.0 editor:newline (atom-text-editor.editor.is-focused)
-0:27.5.0 core:backspace (atom-text-editor.editor.is-focused)
-0:27.1.0 editor:delete-to-beginning-of-word (atom-text-editor.editor.is-focused)
-0:25.9.0 editor:duplicate-lines (atom-text-editor.editor.is-focused)
19x -0:24.3.0 core:move-left (atom-text-editor.editor.is-focused)
-0:23 core:move-right (atom-text-editor.editor.is-focused)
5x -0:22.6.0 editor:select-to-beginning-of-word (atom-text-editor.editor.is-focused)
4x -0:18.6.0 core:backspace (atom-text-editor.editor.is-focused)
-0:11.6.0 core:save (atom-text-editor.editor.is-focused)
### Config
{
"core": {
"disabledPackages": [
"linter-htmlhint"
]
},
"editor": {
"fontSize": 15,
"invisibles": {}
}
}
### Installed Packages
# User
linter, v1.1.0
linter-php, v0.0.15
php-twig, v4.0.0
sass-autocompile, v0.7.1
set-syntax, v0.3.0
# Dev
No dev packages
tried adding a new file through the navigation menu. this used to work until
the 1.0 update.
|
I right-clicked on a folder in the tree view
**Atom Version** : 0.194.0
**System** : Windows 7 Entreprise
**Thrown From** : Atom Core
### Stack Trace
Uncaught Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.
(C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-
window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction
(C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-
server.js:116:18)
at EventEmitter.
(C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-
server.js:208:14)
at emitMany (events.js:108:13)
At C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77
Error: Cannot find module './context-menu'
Error: Cannot find module './context-menu'
at Function.Module._resolveFilename (module.js:328:15)
at Function.Module._load (module.js:270:25)
at Module.require (module.js:357:17)
at require (module.js:376:17)
at BrowserWindow.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\browser\atom-window.js:152:27)
at emitOne (events.js:77:13)
at BrowserWindow.emit (events.js:166:7)
at callFunction (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:116:18)
at EventEmitter.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\browser\lib\rpc-server.js:208:14)
at emitMany (events.js:108:13)
at metaToValue (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:77:15)
at BrowserWindow.RemoteMemberFunction [as emit] (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\atom.asar\renderer\api\lib\remote.js:111:26)
at ContextMenuManager.module.exports.ContextMenuManager.showForEvent (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\context-menu-manager.js:170:31)
at HTMLDocument.<anonymous> (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\window-event-handler.js:149:33)
at HTMLDocument.handler (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\src\space-pen-extensions.js:112:34)
at HTMLDocument.jQuery.event.dispatch (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4681:9)
at HTMLDocument.elemData.handle (C:\Users\jbrichardet\AppData\Local\atom\app-0.194.0\resources\app.asar\node_modules\space-pen\vendor\jquery.js:4359:46)
### Commands
-4:55.5.0 editor:checkout-head-revision (atom-text-editor.editor.is-focused)
2x -3:41.6.0 window:focus-pane-on-right (atom-text-editor.editor)
-3:17.5.0 application:add-project-folder (ol.tree-view.full-menu.list-tree.has-collapsable-children.focusable-panel)
-2:47.4.0 editor:newline (atom-text-editor.editor.is-focused)
-2:38.2.0 core:cut (atom-text-editor.editor)
-2:36.5.0 core:paste (atom-text-editor.editor.is-focused)
-2:26.6.0 core:save (atom-text-editor.editor.is-focused)
-2:20.6.0 core:move-down (atom-text-editor.editor)
-2:20.4.0 autocomplete-plus:confirm (atom-text-editor.editor)
-2:15.8.0 core:save (atom-text-editor.editor)
-2:08.7.0 core:copy (atom-text-editor.editor.is-focused)
-2:01.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:59.7.0 core:save (atom-text-editor.editor.is-focused)
-1:52.2.0 core:paste (atom-text-editor.editor.is-focused)
-1:51.6.0 core:save (atom-text-editor.editor.is-focused)
-1:30.6.0 core:backspace (atom-text-editor.editor)
### Config
{
"core": {
"ignoredNames": [
"node_modules"
],
"themes": [
"atom-dark-ui",
"seti-syntax"
],
"disabledPackages": [
"Tern"
],
"projectHome": "Y:\\app-tfoumax"
},
"editor": {
"invisibles": {},
"softWrap": true,
"showIndentGuide": true
}
}
### Installed Packages
# User
autocomplete-plus, v2.12.0
autocomplete-snippets, v1.2.0
javascript-snippets, v1.0.0
jshint, v1.3.5
language-ejs, v0.1.0
linter, v0.12.1
pretty-json, v0.3.3
save-session, v0.14.0
Search, v0.4.0
seti-syntax, v0.4.0
# Dev
No dev packages
| 1 |
When I use component , given the following code it adds the below css rules
.MuiGrid-spacing-xs-16 {
width: calc(100% + 16px);
margin: -8px;
}
My code
<Grid container direction={'row'} justify={'space-between'} align={'flex-start'}>
<Grid>
<OfferPreview />
</Grid>
<Grid>
<OfferPreview />
</Grid>
</Grid>
The result is that the container overlaping. Because the margin -8px affect
also top and bottom.
The fix could be...
.MuiGrid-spacing-xs-16 {
width: calc(100% + 16px);
margin: 0 -8px;
}
Version
* Material-UI: 1.0.0-beta.5

|
The `<Grid container>` extends beyond its parent, with half of spacing size.
I have marked the extra width in red, also setting spacing to zero fixes the
problem.

Here is a working example: https://codesandbox.io/s/Y8nzGm5W.
Similar code with a zero spacing works as expected:
https://codesandbox.io/s/NxvYxvQpL.
| 1 |
requests does not work with charset-normalizer 3.0.0 or 3.0.1, blocking users
of requests from updating to the latest charset-normalizer.
## Expected Result
## Actual Result
## Reproduction Steps
import requests
## System Information
$ python -m requests.help
{
"paste": "here"
}
|
Simple test under Python 3.3.2, using the current 2.0 branch of requests (same
behaviour with requests-1.2.3 btw); inspecting request headers with
requestb.in.
The Content-Type header contains two entries. I expected my stipulated header
to override (replace) application/x-www-form-urlencoded.
import requests
data = open('C:/my_audio_files\sample_50.wav', 'rb').read()
response = requests.post(url = "http://requestb.in/183gv9g1"
data=data,
headers={'Content-Type': 'application/octet-stream'}
)
FORM/POST PARAMETERS
None
HEADERS
Content-Length: 38206
User-Agent: python-requests/1.2.3 CPython/3.3.2 Windows/8
Connection: close
Host: requestb.in
Content-Type: application/octet-stream, application/x-www-form-urlencoded
Accept: _/_
Accept-Encoding: identity, gzip, deflate, compress
RAW BODY
RIFF6�WAVEfmt etc...
| 0 |
**Migrated issue, originally created by Andrey Popp (@andreypopp)**
Sometimes I want to write select statement as raw SQL and then be able to do
subselects from it or join it to other sqlalchemy constructs. I wrote basic
sqlalchemy.sql construct to do that and wonder if it will be useful to have it
in sqlalchemy (of course it's quick and dirty, but could be refactored into
something more clean). See
https://github.com/andreypopp/saext/blob/master/saext/tests/test_textual.txt
for test cases.
|
**Describe the bug**
When I insert instances using bulk insert, first the instances are added
without the relations, then added again. Which causes duplicates and
incomplete rows
**Expected behavior**
The instances should only appear once inside the database.
**To Reproduce**
This is a very minimal version of my code, I kept the important pieces:
from sqlalchemy.orm import relationship
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy import Column, Integer, String, ForeignKey, Float
from sqlalchemy.orm import sessionmaker
from sqlalchemy import create_engine
from contextlib import contextmanager
from sqlalchemy.exc import IntegrityError, InvalidRequestError
Base = declarative_base()
class Characteristic(Base):
__tablename__ = "characteristic"
id = Column('id', Integer, primary_key=True)
name = Column('name', String, index=True)
key = Column('key', String, index=True)
measurements = relationship("Measurement", backref="characteristic")
def __repr__(self):
return f"<Characteristic(id='{self.id}', name='{self.name}', key='{self.key}')>"
class Measurement(Base):
__tablename__ = "measurement"
measurement_id = Column('measurement_id', Integer, primary_key=True)
index = Column('index', Integer)
value = Column('value', Float)
simulation_id = Column('simulation_id', Integer, ForeignKey('simulation.id'))
characteristic_id = Column('characteristic_id', Integer, ForeignKey('characteristic.id'))
def __repr__(self):
return f"<Measurement(id='{self.measurement_id}', simulation_id='{self.simulation_id}, characteristic_id='{self.characteristic_id}', index='{self.index}', value='{self.value}')>"
class Simulation(Base):
__tablename__ = "simulation"
id = Column('id', Integer, primary_key=True)
measurements = relationship("Measurement", backref="simulation")
def __repr__(self):
return f"<Simulation(id='{self.id}')>"
@contextmanager
def session_scope(sessionmaker, **kwargs):
"""Provide a transactional scope around a series of operations."""
session = sessionmaker(**kwargs)
try:
yield session
session.commit()
except:
session.rollback()
raise
finally:
session.close()
def silent_insert(session, instance):
try:
session.add(instance)
session.commit()
except (IntegrityError,
InvalidRequestError):
print("silent_insert: Instance already present in the table")
def silent_bulk_insert(session, instances):
try:
session.bulk_save_objects(instances)
session.commit()
except (IntegrityError, InvalidRequestError):
print("silent_bulk_insert: Instance already present in the table")
def find_instance(session, base: Base, column_to_value: dict):
criterions = (getattr(base, column).like(value) for column, value in column_to_value.items())
return session.query(base).filter(*criterions).first()
# Engine initialization
engine = create_engine(r'sqlite:///test.db', echo=True)
Session = sessionmaker(bind=engine)
Base.metadata.drop_all(bind=engine)
# Database Initialization
Base.metadata.create_all(bind=engine)
with session_scope(Session) as session:
silent_insert(session, Simulation(id=1))
silent_insert(session, Characteristic(name='drain', key='current'))
# Adding the data with bulk insert
with session_scope(Session) as session:
instances = []
simulation = find_instance(session, Simulation, {'id': 1})
characteristic = find_instance(session, Characteristic, {'name': 'drain', 'key': 'current'})
for i in range(5):
instances.append(
Measurement(**{'index': 1, 'value': 1, 'simulation': simulation, 'characteristic': characteristic}))
silent_bulk_insert(session, instances)
# Checking the table
with session_scope(Session) as session:
rows = session.query(Measurement).all()
for row in rows:
print(row)
**Error**
This is the output of the console:
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine ('drain', 'current', 1, 0)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine INSERT INTO measurement ("index", value) VALUES (?, ?)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine ((0, 0.0), (1, 2.0), (2, 4.0), (3, 6.0), (4, 8.0))
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine INSERT INTO measurement ("index", value, simulation_id, characteristic_id) VALUES (?, ?, ?, ?)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine (0, 0.0, 1, 1)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine INSERT INTO measurement ("index", value, simulation_id, characteristic_id) VALUES (?, ?, ?, ?)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine (1, 2.0, 1, 1)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine INSERT INTO measurement ("index", value, simulation_id, characteristic_id) VALUES (?, ?, ?, ?)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine (2, 4.0, 1, 1)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine INSERT INTO measurement ("index", value, simulation_id, characteristic_id) VALUES (?, ?, ?, ?)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine (3, 6.0, 1, 1)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine INSERT INTO measurement ("index", value, simulation_id, characteristic_id) VALUES (?, ?, ?, ?)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine (4, 8.0, 1, 1)
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine COMMIT
2021-02-07 22:21:46,621 INFO sqlalchemy.engine.base.Engine BEGIN (implicit)
2021-02-07 22:21:46,621 INFO sqlalchemy.engine.base.Engine SELECT measurement.measurement_id AS measurement_measurement_id, measurement."index" AS measurement_index, measurement.value AS measurement_value, measurement.simulation_id AS measurement_simulation_id, measurement.characteristic_id AS measurement_characteristic_id
FROM measurement
2021-02-07 22:21:46,621 INFO sqlalchemy.engine.base.Engine ()
<Measurement(id='1', simulation_id='None, characteristic_id='None', index='0', value='0.0')>
<Measurement(id='2', simulation_id='None, characteristic_id='None', index='1', value='2.0')>
<Measurement(id='3', simulation_id='None, characteristic_id='None', index='2', value='4.0')>
<Measurement(id='4', simulation_id='None, characteristic_id='None', index='3', value='6.0')>
<Measurement(id='5', simulation_id='None, characteristic_id='None', index='4', value='8.0')>
<Measurement(id='6', simulation_id='1, characteristic_id='1', index='0', value='0.0')>
<Measurement(id='7', simulation_id='1, characteristic_id='1', index='1', value='2.0')>
<Measurement(id='8', simulation_id='1, characteristic_id='1', index='2', value='4.0')>
<Measurement(id='9', simulation_id='1, characteristic_id='1', index='3', value='6.0')>
<Measurement(id='10', simulation_id='1, characteristic_id='1', index='4', value='8.0')>
2021-02-07 22:21:46,621 INFO sqlalchemy.engine.base.Engine COMMIT
Process finished with exit code 0
I guess the error come from this line ?
2021-02-07 22:21:46,611 INFO sqlalchemy.engine.base.Engine ((0, 0.0), (1, 2.0), (2, 4.0), (3, 6.0), (4, 8.0))
Basically I would only want that inside my measurement database:
<Measurement(id='1', simulation_id='1, characteristic_id='1', index='0', value='0.0')>
<Measurement(id='2', simulation_id='1, characteristic_id='1', index='1', value='2.0')>
<Measurement(id='3', simulation_id='1, characteristic_id='1', index='2', value='4.0')>
<Measurement(id='4', simulation_id='1, characteristic_id='1', index='3', value='6.0')>
<Measurement(id='5', simulation_id='1, characteristic_id='1', index='4', value='8.0')>
And not the other rows
**Versions.**
* OS: Windows 10
* Python: 3.8
* SQLAlchemy: 1.3.20
* SQLite 3.33.0
Thanks!
| 0 |
If I wrap the playwright test object with our own custom test class, no tests
run. Importing the playwright test object into the spec file directly works as
expected.
I am attempting to move a large codebase from a Selenium based framework
(theintern.io) to playwright. We already have a strong test API that the
framework implementation sits behind, unfortunately when it comes to
implementing the test runner part of that API using Playwright we are running
into an issue where it doesn't seem to find any thing to run.
The repo below has a very simple repro case.
Importing `test` from `@playwight/test` works as expected, but as soon as I
try and use it from my wrapper class, nothing runs.
**Test**
import { MyBdd } from "../bdd";
// import { test } from "@playwright/test";
MyBdd.test("run google", async (page) => {
// test("run google", async ({ page }) => {
await page.goto("https://www.google.com");
await page.goto("https://www.google.com/");
await page.getByRole("button", { name: "Reject all" }).click();
await page.getByRole("combobox", { name: "Search" }).click();
await page.getByRole("combobox", { name: "Search" }).fill("bob");
await page.getByRole("combobox", { name: "Search" }).press("Enter");
});
**Test wrapper**
import { test, Page } from "@playwright/test";
export class MyBdd {
public static describe(name: string, func: () => void) {
return test.describe(name, func);
}
public static before(func: () => void) {
return test.beforeAll(func);
}
public static test(name: string, func: (args: Page) => Promise<void>) {
return test(name, (args) => func(args.page));
}
}
### System info
* Playwright Version: [v1.33.0]
* Operating System: [All]
* Browser: [All]
* Other info:
### Source code
* [ x] I provided exact source code that allows reproducing the issue locally.
**Link to the GitHub repository with the repro**
https://github.com/David-Hart-i2/playwright-bdd-test
**Steps**
* [Run the test]
**Expected**
The test to be found and run
**Actual**
The test doesn't seem to be found. I get the output like a test has been run,
but with zero tests.
|
### System info
* Playwright Version: [v1.31.1]
* Operating System: macOS 13.0
* Browser: Chromium
* Other info:
### Source code
* I provided exact source code that allows reproducing the issue locally.
const fileToUpload = path.join(
__dirname,
`../e2e/__shared__/fixtures/samples/${wsdlRestApi}.wsdl`
)
//fileToUpload yields: /Users/calvin/Github/ui/e2e/__shared__/fixtures/samples/weather.wsdl
const fileChooserPromise = page.waitForEvent('filechooser')
await page
.getByRole('button', {
name: 'Drag and drop files here or click to upload (json/wsdl/xml/xsd/yml/yaml/zip)',
})
.click()
const fileChooser = await fileChooserPromise
await fileChooser.setFiles(fileToUpload)

This seems to only be happening for .wsdl files, as similar code was used for
.yaml files and didn't seem to come up with this path error.
**Expected**
Filechooser should select the path that fileToUpload yields, but cuts out the
folders in the directory `/e2e/__shared__/fixtures/samples/`
**Actual**
Filechooser is choosing `/Users/calvin/Github/ui/weather.wsdl` instead of
`/Users/calvin/Github/ui/e2e/__shared__/fixtures/samples/weather.wsdl`
[Describe actual behavior]
| 0 |
### System information
* **Have I written custom code (as opposed to using a stock example script provided in TensorFlow)** :
No
* **OS Platform and Distribution (e.g., Linux Ubuntu 16.04)** :
$ uname -a
Linux precision 4.15.0-34-generic #37~16.04.1-Ubuntu SMP Tue Aug 28 10:44:06 UTC 2018 x86_64 x86_64 x86_64 GNU/Linux
$ cat /etc/lsb-release
DISTRIB_ID=LinuxMint
DISTRIB_RELEASE=18.2
DISTRIB_CODENAME=sonya
DISTRIB_DESCRIPTION="Linux Mint 18.2 Sonya"
CPU: Intel(R) Xeon(R) CPU E3-1505M v6 @ 3.00GHz
Mem: 32GB
Storage: 500GB
* **Mobile device (e.g. iPhone 8, Pixel 2, Samsung Galaxy) if the issue happens on mobile device** :
No
* **TensorFlow installed from (source or binary)** :
Building from source
* **TensorFlow version (use command below)** :
Issue occurs on both the latest 1.11.0 release branch and on latest master
(`573985c` currently)
* **Python version** :
$ /usr/bin/python3 -V
Python 3.5.2
* **Bazel version (if compiling from source)** :
$ bazel version
Build label: 0.17.2
Build target: bazel-out/k8-opt/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar
Build time: Fri Sep 21 10:31:42 2018 (1537525902)
Build timestamp: 1537525902
Build timestamp as int: 1537525902
* **GCC/Compiler version (if compiling from source)** :
$ gcc -v
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/5/lto-wrapper
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 5.4.0-6ubuntu1~16.04.10' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.10)
* **CUDA/cuDNN version** :
N/A
* **GPU model and memory** :
# Quadro M1200, 4GB (3D acceleration)
# Intel HD Graphics 630 (primary vga)
lspci | grep -iP '(vga|3d)'
00:02.0 VGA compatible controller: Intel Corporation Device 591d (rev 04)
01:00.0 3D controller: NVIDIA Corporation Device 13b6 (rev a2)
* **Exact command to reproduce** :
`bazel test -c opt --action_env PATH="$PATH" -- //tensorflow/...
-//tensorflow/compiler/... -//tensorflow/contrib/lite/...`
or
`bazel test --test_verbose_timeout_warnings -c opt --action_env PATH="$PATH"
-- //tensorflow/python/keras:data_utils_test`
(I added --action_env because I was having some issues getting bazel to find
my installed python3)
### Describe the problem
This is the only test that fails for me when building from source. It seems
timeouts in this test have been a problem before, per a commit by @jlebar:
`7a60167`
### Source code / logs
$ bazel test --test_verbose_timeout_warnings -c opt --action_env PATH="$PATH" -- //tensorflow/python/keras:data_utils_test
...
TIMEOUT: //tensorflow/python/keras:data_utils_test (Summary)
/home/calid/.cache/bazel/_bazel_calid/d95f42fa008125d605be7949a2399f3e/execroot/org_tensorflow/bazel-out/k8-opt/testlogs/tensorflow/python/keras/data_utils_test/test.log
[1 / 2] 1 / 1 tests, 1 failed; 1 action; last test: .../python/keras:data_utils_test
Target //tensorflow/python/keras:data_utils_test up-to-date:
[2 / 2] 1 / 1 tests, 1 failed; no action; last bazel-bin/tensorflow/python/keras/data_utils_test
[2 / 2] 1 / 1 tests, 1 failed; no action; lastINFO: Elapsed time: 915.423s, Critical Path: 915.01s
[2 / 2] 1 / 1 tests, 1 failed; no action; lastINFO: 1 process: 1 local.
[2 / 2] 1 / 1 tests, 1 failed; no action; lastINFO: Build completed, 1 test FAILED, 2 total actions
//tensorflow/python/keras:data_utils_test TIMEOUT in 915.0s
/home/calid/.cache/bazel/_bazel_calid/d95f42fa008125d605be7949a2399f3e/execroot/org_tensorflow/bazel-out/k8-opt/testlogs/tensorflow/python/keras/data_utils_test/test.log
INFO: Build completed, 1 test FAILED, 2 total actions
$ cat /home/calid/.cache/bazel/_bazel_calid/d95f42fa008125d605be7949a2399f3e/execroot/org_tensorflow/bazel-out/k8-opt/testlogs/tensorflow/python/keras/data_utils_test/test.log
exec ${PAGER:-/usr/bin/less} "$0" || exit 1
Executing tests from //tensorflow/python/keras:data_utils_test
-----------------------------------------------------------------------------
Terminated
|
The classify_image.py example isn't working because inception v3 is larger
than 64MB
[libprotobuf ERROR google/protobuf/src/google/protobuf/io/coded_stream.cc:207]
A protocol message was rejected because it was too big (more than 67108864
bytes). To increase the limit (or to disable these warnings), see
CodedInputStream::SetTotalBytesLimit() in google/protobuf/io/coded_stream.h.
| 0 |
Hello,
I would like to be able to use mouse wheel scrolling as part of a shortcut.
For Example:
* `win + scrollDown`, switch to next virtual desktop (scrollUp for previous)
* `alt + scrollDown` same as alt tab
I believe this is currently not possible
|
# Summary of the new feature/enhancement
# Proposed technical implementation details (optional)
| 0 |
Possibility to hide the menu bar on windows. I takes up unnecessary space and
it's barely being used because of the command palette and hotkeys for
remaining functionality.

|
A lot of software on Windows (e.g. Sublime Text, Firefox) allow you to
collapse the menu bar so there's only the tab bar. The menu bar can then be
collapsed/expanded by pressing the Alt key.
It would be great to have this feature in Atom as it maintains the look and
feel across different platforms and gives slightly more vertical space.
(By menu bar I mean the "File / Edit / View / etc" bar.)
| 1 |
_From@joaomoreno on December 14, 2015 13:52_

_Copied from original issue:microsoft/vscode#1269_
| 1 | |
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.5.8
* Operating System version: win10
* Java version: 1.8
### Step to reproduce this issue
1. Write a service to upload file, such as pdf document...
2. interface maybe like this:
Result parseFile(String filename,InputStream inputStream);
3. Use a specified document test the interface.
> reproduce this issue maybe need a specified pdf document.
Pls. provide [GitHub address] to reproduce this issue.
### the content of pdf documents.
What do you expected from the above steps?
### null, and exceptions below.
What is actually happen?
### In fact, the first request throw a SocketTimeoutException, see below, but
latter requests reponse correctly. So I guess that is because of initializaton
probleam. _Then I find when I set timeout=2000 on <dubbo:reference>,
everything works rightly._ It's very confusing to me. According to exceptions
thrown by provider, that is, the consumer doesn't send input stream correcly,
and it throws a timeout exception immediately, so provider cannot get input
stream, it throws a org.apache.tika.exception.ZeroByteFileException.
If there is an exception, please attach the exception trace:
|
* I have searched the issues of this repository and believe that this is not a duplicate.
* I have checked the FAQ of this repository and believe that this is not a duplicate.
### Environment
* Dubbo version: 2.7.4.1
* Operating System version: ANY
* Java version: ANY(8 or above)
### Steps to reproduce this issue
1. Apollo config center not work via XML configuration
# vm parameter
-Dapp.id=ABC
<!-- configuration xml -->
<dubbo:config-center protocol="apollo" address="127.0.0.1:8080" namespace="dubbo">
<dubbo:parameter key="env" value="DEV"/>
</dubbo:config-center>
2. And, this configuration is not friendly
### Objective
1. Apollo config center initialized via XML like
<dubbo:config-center protocol="apollo" address="127.0.0.1:8080" namespace="dubbo">
<dubbo:parameter key="env" value="DEV"/>
<dubbo:parameter key="app.id" value="ABC"/>
</dubbo:config-center>
2. Or var XML with System Properties: "-Dapp.id=ABC -Denv=DEV -Dapollo.meta=http://127.0.0.1:8080"
<dubbo:config-center protocol="apollo" namespace="dubbo"/>
| 0 |
## 🐛 Bug
`torch.nn.functional.adaptive_avg_pool2d` causes a segmentation fault when the
parameter `output_size` is an empty tuple, `()` or an empty array `[]`.
## To Reproduce
import pytorch
torch.nn.functional.adaptive_avg_pool2d(torch.tensor([1,2,3,4,5]), ())
## Expected behavior
Proper error handling for an empty tuple or empty array like
`adaptive_avg_pool1d`.
## Environment
PyTorch version: 1.5.0
Is debug build: No
CUDA used to build PyTorch: 10.1
OS: Ubuntu 18.04.4 LTS
GCC version: Could not collect
CMake version: version 3.14.0
Python version: 3.7
Is CUDA available: No
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
Versions of relevant libraries:
[pip] numpy==1.18.1
[pip] torch==1.5.0
[pip] torchvision==0.6.0a0+82fd1c8
[conda] blas 1.0 mkl
[conda] cudatoolkit 10.1.243 h6bb024c_0
[conda] mkl 2020.1 217
[conda] mkl-include 2020.1 217
[conda] mkl-service 2.3.0 py37he904b0f_0
[conda] mkl_fft 1.0.15 py37ha843d7b_0
[conda] mkl_random 1.1.0 py37hd6b4f25_0
[conda] numpy 1.18.1 py37h4f9e942_0
[conda] numpy-base 1.18.1 py37hde5b4d6_1
[conda] pytorch 1.5.0 py3.7_cuda10.1.243_cudnn7.6.3_0 pytorch
[conda] torchvision 0.6.0 py37_cu101 pytorch
cc @ezyang @gchanan @zou3519
|
## 🐛 Bug
In `torch.nn.functional.adaptive_avg_pool2d` and
`torch.nn.functional.adaptive_avg_pool3d`, a segmentation fault occurs when
passing an empty tuple (or an empty array) for `output_size` parameter. It
occurs even though passing a valid 4D tensor for `input` parameter.
## To Reproduce
import torch
# for 3d
torch.nn.functional.adaptive_avg_pool3d(torch.randn([2,2,2,2]), [])
# for 2d
torch.nn.functional.adaptive_avg_pool2d(torch.randn([2,2,2,2]), [])
## Environment
PyTorch version: 1.5.0
Is debug build: No
CUDA used to build PyTorch: 10.1
OS: Ubuntu 18.04.4 LTS
GCC version: Could not collect
CMake version: version 3.14.0
Python version: 3.7
Is CUDA available: No
CUDA runtime version: No CUDA
GPU models and configuration: No CUDA
Nvidia driver version: No CUDA
cuDNN version: No CUDA
Versions of relevant libraries:
[pip] numpy==1.18.1
[pip] torch==1.5.0
[pip] torchvision==0.6.0a0+82fd1c8
[conda] blas 1.0 mkl
[conda] cudatoolkit 10.1.243 h6bb024c_0
[conda] mkl 2020.1 217
[conda] mkl-include 2020.1 217
[conda] mkl-service 2.3.0 py37he904b0f_0
[conda] mkl_fft 1.0.15 py37ha843d7b_0
[conda] mkl_random 1.1.0 py37hd6b4f25_0
[conda] numpy 1.18.1 py37h4f9e942_0
[conda] numpy-base 1.18.1 py37hde5b4d6_1
[conda] pytorch 1.5.0 py3.7_cuda10.1.243_cudnn7.6.3_0 pytorch
[conda] torchvision 0.6.0 py37_cu101 pytorch
cc @ezyang @gchanan @zou3519 @albanD @mruberry
| 1 |
I was being really lazy when I wrote this one-liner:
bytes2hex(arr::Vector{UInt8}) = join([hex(i,2) for i in arr])
It's a good intro issue to rewrite this to pre-allocate a byte buffer, go
through and fill it with hex characters appropriately and then return that
buffer wrapped in a string object.
|
I do not manage to call Julia from a C-main program under Windows 7. I am
aware of issues
#11419, #15194. I have the following C-Program testc.c to perform a minimal
test (as adviced in the Julia documentation about embedding Julia). The
program is stored under $JULIA_DIR\bin:
#include "julia.h"
int main(int argc, char *argv[])
{
jl_init(NULL);
jl_eval_string("display(2.0)");
jl_atexit_hook(0);
return 0;
}
All the following is performed under Windows 7 with MSYS2 and MINGW64 as
adviced in https://github.com/JuliaLang/julia/blob/master/README.windows.md.
In all experiments, I start with a fresh MSYS2 shell and execute the following
commands:
JULIA_DIR=<location of JULIA directory>
JULIA_HOME=$JULIA_DIR/bin
export PATH=$JULIA_DIR/bin:$PATH
export PATH=<location of MINGW installed by JULIA>/usr/x86_64-w64-mingw32/sys-root/mingw/bin:$PATH
cd $JULIA_DIR/bin
Running Julia 0.4.3 or 0.4.5 with the command:
gcc -I$JULIA_DIR/include/julia -L$JULIA_DIR/bin -L$JULIA_DIR/lib -ljulia -lopenlibm testc.c -o testc
gives the following error:
Please submit a bug report with steps to reproduce this fault, and any error messages that follow (in their entirety). Thanks.
Exception: EXCEPTION_ACCESS_VIOLATION at 0x0 -- unknown function (ip: 0000000000000000)
unknown function (ip: 0000000000000000)
Running Julia 0.5.0-dev:
Julia Version 0.5.0-dev+4536
Commit 44d778a (2016-06-05 01:30 UTC)
Platform Info:
System: NT (x86_64-w64-mingw32)
CPU: Intel(R) Core(TM) i7-4800MQ CPU @
WORD_SIZE: 64
BLAS: libopenblas (USE64BITINT DYNAMIC
LAPACK: libopenblas64_
LIBM: libopenlibm
LLVM: libLLVM-3.7.1 (ORCJIT, haswell)
again with
gcc -I$JULIA_DIR/include/julia -L$JULIA_DIR/bin -L$JULIA_DIR/lib -ljulia -lopenlibm testc.c -o testc
is successful. Running the generated testc.exe gives the following error:
LLVM ERROR: Program used external function 'rint' which could not be resolved!
From #11419, libopenlibm should be statically linked (especially since rint is
a symbol in libopenlibm). Trying to generate a libopenlibm.dll.a stub library
for this:
dlltool -z libopenlibm.dll.def --export-all-symbol libopenlibm.dll
dlltool -d libopenlibm.dll.def -l libopenlibm.dll.a
gcc -I$JULIA_DIR/include/julia -L$JULIA_DIR/bin -L$JULIA_DIR/lib -ljulia -lopenlibm testc.c -o testc
gives error messages due to multiple defintiions of
atexit, _encode_pointer, __mingw_init_ehandler, _gnu_exception_handler
Removed these symbols in libopenlibm.dll.def and running again:
dlltool -d libopenlibm.dll.def -l libopenlibm.dll.a
gcc -I$JULIA_DIR/include/julia -L$JULIA_DIR/bin -L$JULIA_DIR/lib -ljulia -lopenlibm testc.c -o testc
This is successful. Running the generated testc.exe gives the following error:
testc.exe: error while loading shared libraries: (null): cannot open shared object file: No such file or directory
I am stuck and do not know what to else to do. Help is appreciated.
| 0 |
**Jon Harper** opened **SPR-6796** and commented
There needs to be a way to issue a redirect using the String type and to
specify that there should be no exposing of the model to the view.
One use case:
HandlerInterceptors are commonly used to add data to the model. If the
controller supports POST request and does a redirect (which is the most common
case) then the data added by the handler interceptor gets appended to the
redirect url. This is undesirable. See
http://forum.springsource.org/showthread.php?t=84140.
Another use case:
The controller uses a session attribute. The GET inserts into the model
(session). The POST accepts a SessionStatus and calls status.setComplete() and
then does a redirect using "redirect:view". The model data is still appended
to the end of the redirected URL. The programmer now has to accept the
ModelMap and call clear() on it. This should really not be required. See
http://forum.springsource.org/showthread.php?p=275392.
Therefore there needs to be a very simple way (i.e. view String prefix ) to do
a redirect without exposing the model to the view. I see this as the default
use case and the case of exposing the model as a less common use case.
Jon
* * *
**Affects:** 3.0 GA
**Reference URL:** http://forum.springsource.org/showthread.php?t=84140
**Issue Links:**
* #5995 Allow specifying which request attributes are included in RedirectView ( _ **"duplicates"**_ )
* #13278 When a controller method redirect to any url, the framework automatically appends all the model attributes in url query string even if those attributes are stored in session. ( _ **"is duplicated by"**_ )
* #10625 When doing a redirect anything that is not org.springframework.beans.BeanUtils.isSimpleValueType silently gets left off of the redirect query string
3 votes, 4 watchers
|
**Mark Kettner** opened **SPR-2646** and commented
We have the following source:
<td style="width: 185px;" valign="top">
1: <spring:bind path="searchCriteria.fase">
<select name="<c:out value="${status.expression}"/>">
<option value="" /><c:forEach items="${fasen}"
var="fase" varStatus="loopStatus">
<c:if test="${searchCriteria.fase == fase}">
<c:set var="selected" value="true" />
</c:if>
2: <spring:bind path="searchCriteria.fasen[${loopStatus.index}]">
<option value="<c:out value="${status.value}"/>"
<c:if test="${selected}">selected="selected"</c:if>><c:out
value="${status.value}" /></option>
</spring:bind>
<c:remove var="selected" />
</c:forEach>
</select>
</spring:bind></td>
When we deploy this in the tomcat apache-tomcat-5.5.17 the aplpication works,
but when we deploy it on websphere 5.1.10 we getting the next error when the
page opgavelist.jsp is being called:
Error 500: ServletException in '/pages/opgaveList.jsp': Unable to compile
class for JSP An error occurred at line: 58 in the jsp file:
/pages/opgaveList.jsp Generated servlet error:
C:\java\ibm\WebSphere\AppServer\temp\PP94H199\server1\vvk-product-oo-
ear-1.0.1.0\vvk-product-oo-web-1.0.1.0.war\pages_opgaveList.java:543: status
is already defined in
_jspService(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse)
org.springframework.web.servlet.support.BindStatus status = null; ^ 1 error
After an investigation we found that the websphere has a problem when we nest
the tag : spring:bind. In the generated servlet we see that the variable
status = null; has been declared twice.
Websphere 5.1.10 generated java:
{ // begin scope of tag variables
try {
int _jspx_eval_spring_bind_2 = _jspx_th_spring_bind_2
.doStartTag();
if (_jspx_eval_spring_bind_2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
1.
org.springframework.web.servlet.support.BindStatus status = null;
status = (org.springframework.web.servlet.support.BindStatus) pageContext
.findAttribute("status");
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(50,42);to=(52,17)]
out.write("\r\n\r\n\t\t\t<select name=\"");
// end
// ##DEBUG## ##TAGLIB## "/pages/opgaveList.jsp"
// 53,17-"/pages/opgaveList.jsp" 53,54
// LineMapIndex:43
/* ------ c:out ------ */
org.apache.taglibs.standard.tag.el.core.OutTag _jspx_th_c_out_6 = new org.apache.taglibs.standard.tag.el.core.OutTag();
_jspx_th_c_out_6.setPageContext(pageContext);
_jspx_th_c_out_6.setParent(_jspx_th_spring_bind_2);
_jspx_th_c_out_6.setValue("${status.expression}");
_jspxTagObjects.push(_jspx_th_c_out_6);
int _jspx_eval_c_out_6 = _jspx_th_c_out_6
.doStartTag();
// end
// ##DEBUG## "/pages/opgaveList.jsp"
// 53,17-"/pages/opgaveList.jsp" 53,54
// LineMapIndex:44
if (_jspx_th_c_out_6.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
return;
((javax.servlet.jsp.tagext.Tag) _jspxTagObjects
.pop()).release();
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(52,54);to=(53,23)]
out.write("\">\r\n\t\t\t\t<option value=\"\" />");
// end
// ##DEBUG## ##TAGLIB## "/pages/opgaveList.jsp"
// 54,23-"/pages/opgaveList.jsp" 55,39
// LineMapIndex:45
/* ------ c:forEach ------ */
org.apache.taglibs.standard.tag.el.core.ForEachTag _jspx_th_c_forEach_2 = new org.apache.taglibs.standard.tag.el.core.ForEachTag();
_jspx_th_c_forEach_2.setPageContext(pageContext);
_jspx_th_c_forEach_2
.setParent(_jspx_th_spring_bind_2);
_jspx_th_c_forEach_2.setItems("${fasen}");
_jspx_th_c_forEach_2.setVar("fase");
_jspx_th_c_forEach_2.setVarStatus("loopStatus");
try {
int _jspx_eval_c_forEach_2 = _jspx_th_c_forEach_2
.doStartTag();
if (_jspx_eval_c_forEach_2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(54,39);to=(57,5)]
out.write("\r\n\r\n\r\n\t\t\t\t\t");
// end
// ##DEBUG## ##TAGLIB##
// "/pages/opgaveList.jsp"
// 58,5-"/pages/opgaveList.jsp" 58,67
// LineMapIndex:47
/* ------ spring:bind ------ */
org.springframework.web.servlet.tags.BindTag _jspx_th_spring_bind_3 = new org.springframework.web.servlet.tags.BindTag();
_jspx_th_spring_bind_3
.setPageContext(pageContext);
_jspx_th_spring_bind_3
.setParent(_jspx_th_c_forEach_2);
_jspx_th_spring_bind_3
.setPath("searchCriteria.fasen[${loopStatus.index}]");
{ // begin scope of tag variables
try {
int _jspx_eval_spring_bind_3 = _jspx_th_spring_bind_3
.doStartTag();
if (_jspx_eval_spring_bind_3 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
2.
org.springframework.web.servlet.support.BindStatus status = null;
status = (org.springframework.web.servlet.support.BindStatus) pageContext
.findAttribute("status");
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(57,67);to=(58,21)]
out
.write("\r\n\t\t\t\t\t\t<option value=\"");
// end
// ##DEBUG## ##TAGLIB##
// "/pages/opgaveList.jsp"
// 59,21-"/pages/opgaveList.jsp"
// 59,53 LineMapIndex:48
/* ------ c:out ------ */
org.apache.taglibs.standard.tag.el.core.OutTag _jspx_th_c_out_7 = new org.apache.taglibs.standard.tag.el.core.OutTag();
_jspx_th_c_out_7
.setPageContext(pageContext);
_jspx_th_c_out_7
.setParent(_jspx_th_spring_bind_3);
_jspx_th_c_out_7
.setValue("${status.value}");
_jspxTagObjects
.push(_jspx_th_c_out_7);
int _jspx_eval_c_out_7 = _jspx_th_c_out_7
.doStartTag();
// end
// ##DEBUG##
// "/pages/opgaveList.jsp"
// 59,21-"/pages/opgaveList.jsp"
// 59,53 LineMapIndex:49
if (_jspx_th_c_out_7
.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
return;
((javax.servlet.jsp.tagext.Tag) _jspxTagObjects
.pop())
.release();
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(58,53);to=(59,7)]
out
.write("\"\r\n\t\t\t\t\t\t\t");
// end
// ##DEBUG## ##TAGLIB##
// "/pages/opgaveList.jsp"
// 60,7-"/pages/opgaveList.jsp"
// 60,51 LineMapIndex:50
/* ------ c:if ------ */
org.apache.taglibs.standard.tag.el.core.IfTag _jspx_th_c_if_1 = new org.apache.taglibs.standard.tag.el.core.IfTag();
_jspx_th_c_if_1
.setPageContext(pageContext);
_jspx_th_c_if_1
.setParent(_jspx_th_spring_bind_3);
_jspx_th_c_if_1
.setTest("${searchCriteria.fase == fase}");
_jspxTagObjects
.push(_jspx_th_c_if_1);
int _jspx_eval_c_if_1 = _jspx_th_c_if_1
.doStartTag();
if (_jspx_eval_c_if_1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
do {
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(59,51);to=(59,70)]
out
.write("selected=\"selected\"");
// end
// ##DEBUG##
// "/pages/opgaveList.jsp"
// 60,70-"/pages/opgaveList.jsp"
// 60,77
// LineMapIndex:51
} while (_jspx_th_c_if_1
.doAfterBody() == javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN);
}
-------
} while (_jspx_th_spring_bind_3
.doAfterBody() == javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN);
}
if (_jspx_th_spring_bind_3
.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
return;
} catch (Throwable _jspx_exception) {
_jspx_th_spring_bind_3
.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_bind_3
.doFinally();
_jspx_th_spring_bind_3
.release();
}
} // end scope of tag variables
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(61,19);to=(62,5)]
out.write("\r\n\t\t\t\t\t");
// end
// ##DEBUG## ##TAGLIB##
// "/pages/opgaveList.jsp"
// 63,5-"/pages/opgaveList.jsp" 63,32
// LineMapIndex:57
/* ------ c:remove ------ */
org.apache.taglibs.standard.tag.common.core.RemoveTag _jspx_th_c_remove_1 = new org.apache.taglibs.standard.tag.common.core.RemoveTag();
_jspx_th_c_remove_1
.setPageContext(pageContext);
_jspx_th_c_remove_1
.setParent(_jspx_th_c_forEach_2);
_jspx_th_c_remove_1.setVar("selected");
_jspxTagObjects
.push(_jspx_th_c_remove_1);
int _jspx_eval_c_remove_1 = _jspx_th_c_remove_1
.doStartTag();
// end
// ##DEBUG## "/pages/opgaveList.jsp"
// 63,5-"/pages/opgaveList.jsp" 63,32
// LineMapIndex:58
if (_jspx_th_c_remove_1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
return;
((javax.servlet.jsp.tagext.Tag) _jspxTagObjects
.pop()).release();
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(62,32);to=(63,4)]
out.write("\r\n\t\t\t\t");
// end
// ##DEBUG## "/pages/opgaveList.jsp"
// 64,4-"/pages/opgaveList.jsp" 64,16
// LineMapIndex:59
} while (_jspx_th_c_forEach_2.doAfterBody() == javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN);
}
if (_jspx_th_c_forEach_2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
return;
} catch (Throwable _jspx_exception) {
_jspx_th_c_forEach_2.doCatch(_jspx_exception);
} finally {
_jspx_th_c_forEach_2.doFinally();
_jspx_th_c_forEach_2.release();
}
// end
// HTML // begin
// [file="/pages/opgaveList.jsp";from=(63,16);to=(65,2)]
out.write("\r\n\t\t\t</select>\r\n\t\t");
// end
// ##DEBUG## "/pages/opgaveList.jsp"
// 66,2-"/pages/opgaveList.jsp" 66,16
// LineMapIndex:60
} while (_jspx_th_spring_bind_2.doAfterBody() == javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN);
}
if (_jspx_th_spring_bind_2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE)
return;
} catch (Throwable _jspx_exception) {
_jspx_th_spring_bind_2.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_bind_2.doFinally();
_jspx_th_spring_bind_2.release();
}
} /---
_jspx_th_spring_message_5.doFinally();
_jspx_th_spring_message_5.release();
}
// end
// HTML // begin
Tomcat generate .java:
try {
int _jspx_eval_spring_bind_1 = _jspx_th_spring_bind_1.doStartTag();
if (_jspx_eval_spring_bind_1 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
1.
org.springframework.web.servlet.support.BindStatus status = null;
status = (org.springframework.web.servlet.support.BindStatus) _jspx_page_context.findAttribute("status");
do {
out.write("\r\n");
out.write("\t\t\t<select name=\"");
if (_jspx_meth_c_out_3(_jspx_th_spring_bind_1, _jspx_page_context, _jspx_push_body_count_spring_bind_1))
return;
out.write("\">\r\n");
out.write("\t\t\t\t<option value=\"\" />");
if (_jspx_meth_c_forEach_1(_jspx_th_spring_bind_1, _jspx_page_context, _jspx_push_body_count_spring_bind_1))
return;
out.write("\r\n");
out.write("\t\t\t</select>\r\n");
out.write("\t\t");
int evalDoAfterBody = _jspx_th_spring_bind_1.doAfterBody();
status = (org.springframework.web.servlet.support.BindStatus) _jspx_page_context.findAttribute("status");
if (evalDoAfterBody != javax.servlet.jsp.tagext.BodyTag.EVAL_BODY_AGAIN)
break;
} while (true);
}
if (_jspx_th_spring_bind_1.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return;
}
} catch (Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_bind_1[0] - > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_bind_1.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_bind_1.doFinally();
_jspx_tagPool_spring_bind_path.reuse(_jspx_th_spring_bind_1);
}
out.write("</td>\r\n");
out.write("\r\n");
out.write("\t\t<td style="width: 185px;" valign="top">");
if (_jspx_meth_spring_message_4(_jspx_page_context))
return;
out.write("</td>\r\n");
out.write("\t\t<td style="width: 185px;" valign="top">\r\n");
out.write("\t\t\r\n");
out.write("\t\t");
// spring:bind
org.springframework.web.servlet.tags.BindTag _jspx_th_spring_bind_2 =
(org.springframework.web.servlet.tags.BindTag)
_jspx_tagPool_spring_bind_path.get(org.springframework.web.servlet.tags.BindTag.class);
_jspx_th_spring_bind_2.setPageContext(_jspx_page_context);
_jspx_th_spring_bind_2.setParent(null);
_jspx_th_spring_bind_2.setPath("searchCriteria.fase");
int[] _jspx_push_body_count_spring_bind_2 = new int[] { 0 };
try {
int _jspx_eval_spring_bind_2 = _jspx_th_spring_bind_2.doStartTag();
if (_jspx_eval_spring_bind_2 != javax.servlet.jsp.tagext.Tag.SKIP_BODY) {
2.
org.springframework.web.servlet.support.BindStatus status = null;
status = (org.springframework.web.servlet.support.BindStatus) _jspx_page_context.findAttribute("status");
----------------
-------------
if (_jspx_th_spring_bind_2.doEndTag() == javax.servlet.jsp.tagext.Tag.SKIP_PAGE) {
return;
}
} catch (Throwable _jspx_exception) {
while (_jspx_push_body_count_spring_bind_2[0] - > 0)
out = _jspx_page_context.popBody();
_jspx_th_spring_bind_2.doCatch(_jspx_exception);
} finally {
_jspx_th_spring_bind_2.doFinally();
_jspx_tagPool_spring_bind_path.reuse(_jspx_th_spring_bind_2);
}
* * *
**Affects:** 1.2.8, 2.0 RC4
**Attachments:**
* _opgaveList.java ( _275.19 kB_ )
* opgaveList_jsp.java ( _123.08 kB_ )
* opgaveList.jsp ( _6.60 kB_ )
| 0 |
Is there any way to combine two different kernels in scikit-learn for
different dimensions?
For example, if there is two input dimensions in GP, is there any way to
define:
K((x,y),(x',y') = k(x,x') * k(y,y')
More precisely, how can we define active dimension for each of them?
Thanks for consideration.
|
When doing kernel engineering, you often want different parts of the kernel to
operate on different features (like some on time and some on space and some on
whatever).
From what I can see, this is not currently possible with sklearn.
GPy implements that with a `active_dims` option for each kernel.
That seems relatively easy, and I think it would be pretty cool. ping @jmetzen
(also @jnothman and @GaelVaroquaux for the voice of reason?)
| 1 |
The `dgemm` function does _not_ write the result into `c` even when using
`overwrite_c`.
I think this is a long-standing bug. I found an earlier mention of it here:
https://mail.scipy.org/pipermail/scipy-user/2008-August/017954.html
|
Turns out the overwrite option, when provided, does not work in all cases. So,
it would be nice to clarify that this requires a Fortran array of the right
type.
| 1 |
**Describe the bug**
The official fat line example doesn't work if we change the line scale to
include negative.
**To Reproduce**
Steps to reproduce the behavior:
1. Go to Three.js official examples in the repo
2. Find the source file of webgl_lines_fat.html
3. At line 109, change to any negative scale.
_**Code**_
line.scale.set(-1, 1, 1);
**Expected behavior**
With a negative scale, lines are disappeared.
**Platform:**
* Device: Desktop
* OS: MacOS
* Browser: Chrome
* Three.js version: dev
|
As the title say: a Line2 disappears completely when the scale is set to
negative on a single axis `line2.scale.set(-1, 1, 1)`. The line is obviously
still there but it's not rendered.
Weirdly, if the scale is set to negative on more than one axis
`line2.scale.set(-1, -1, 1)`, the line appears again.
Here's a jsfiddle that demonstrates the issue:
https://jsfiddle.net/jacopocolo/5fsotdpw/16/
Toggling `wireframeToggle` on line 7 to true shows two Line2 in wireframe but
if `wireframeToggle` is set to false, only one is visible.
##### Three.js version
* Dev
* r117
* ...
##### Browser
* All of them
* Chrome
* Firefox
* Internet Explorer
##### OS
* All of them
* Windows
* macOS (only tested here)
* Linux
* Android
* iOS
| 1 |
Installing packages. This might take a couple of minutes.
Installing react, react-dom, and react-scripts with cra-template...
npm ERR! cb() never called!
npm ERR! This is an error with npm itself. Please report this error at:
npm ERR! https://npm.community
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\Admin\AppData\Roaming\npm-
cache_logs\2020-09-06T11_22_24_685Z-debug.log
Aborting installation.
npm install --save --save-exact --loglevel error react react-dom react-scripts
cra-template has failed.
Deleting generated file... package.json
Deleting my-app/ from F:\react-kabzda-kak-prosto
Done.
|
# What / Why
This seems to be a duplicate of npm/npm#3032 even though the last comment
claims the problem is resolved
In short, when the package contains both `.npmrc` and `publishConfig` setup it
seems that `npm publish` is respecting setup from `publishConfig` while `npm
unpublish` is using `.npmrc`
## When
The project is using both `.npmrc` to define which registry to use to pull
packages from and `publishConfig` to define to which registry the package
should be pushed to
Example:
.npmrc
@dazn:registry=https://example.com/
package.json
{
...
"name": "@dazn/daznid",
"version": "2.0.1-rc00002",
"publishConfig": {
"@dazn:registry": "https://registry.npmjs.org/",
"access": "restricted"
},
...
}
`npm publish --loglevel verbose` output:
npm publish --loglevel verbose
npm info it worked if it ends with ok
npm verb cli [ '/usr/local/bin/node',
npm verb cli '/usr/local/bin/npm',
npm verb cli 'publish',
npm verb cli '--loglevel',
npm verb cli 'verbose' ]
npm info using npm@6.11.3
npm info using node@v10.17.0
npm verb npm-session 7920cfe554e24b7a
npm verb publish [ '.' ]
npm info lifecycle @dazn/daznid@2.0.1-rc00002~prepublish: @dazn/daznid@2.0.1-rc00002
npm info lifecycle @dazn/daznid@2.0.1-rc00002~prepare: @dazn/daznid@2.0.1-rc00002
npm info lifecycle @dazn/daznid@2.0.1-rc00002~prepublishOnly: @dazn/daznid@2.0.1-rc00002
npm WARN lifecycle @dazn/daznid@2.0.1-rc00002~prepublishOnly: cannot run in wd @dazn/daznid@2.0.1-rc00002 npm run build:prod (wd=.)
npm info lifecycle @dazn/daznid@2.0.1-rc00002~prepack: @dazn/daznid@2.0.1-rc00002
npm info lifecycle @dazn/daznid@2.0.1-rc00002~postpack: @dazn/daznid@2.0.1-rc00002
npm notice
npm notice package: @dazn/daznid@2.0.1-rc00002
npm notice === Tarball Contents ===
npm notice 314B dist/index.html
npm notice 21.8kB dist/daznid.js
npm notice 1.3kB package.json
npm notice 1.3kB README.md
npm notice 117B CHANGELOG.yml
npm notice === Tarball Details ===
npm notice name: @dazn/daznid
npm notice version: 2.0.1-rc00002
npm notice package size: 9.4 kB
npm notice unpacked size: 24.8 kB
npm notice shasum: 94bbabe79081807a6d768a9eb5debf282a969c00
npm notice integrity: sha512-6GW6ARu37UeAm[...]gSjZ6cxVvXkRw==
npm notice total files: 5
npm notice
npm http fetch PUT 200 https://registry.npmjs.org/@dazn%2fdaznid 3769ms
npm info lifecycle @dazn/daznid@2.0.1-rc00002~publish: @dazn/daznid@2.0.1-rc00002
npm WARN lifecycle @dazn/daznid@2.0.1-rc00002~publish: cannot run in wd @dazn/daznid@2.0.1-rc00002 npm run publish:ftp & git push --tags (wd=.)
npm info lifecycle @dazn/daznid@2.0.1-rc00002~postpublish: @dazn/daznid@2.0.1-rc00002
+ @dazn/daznid@2.0.1-rc00002
npm verb exit [ 0, true ]
npm timing npm Completed in 4073ms
npm info ok
`npm unpublish -f --loglevel verbose @dazn/daznid@2.0.1-rc00002`
npm info it worked if it ends with ok
npm verb cli [ '/usr/local/bin/node',
npm verb cli '/usr/local/bin/npm',
npm verb cli 'unpublish',
npm verb cli '-f',
npm verb cli '--loglevel',
npm verb cli 'verbose',
npm verb cli '@dazn/daznid@2.0.1-rc00002' ]
npm info using npm@6.11.3
npm info using node@v10.17.0
npm WARN using --force I sure hope you know what you are doing.
npm verb npm-session 9f0285a83a8cd55c
npm http fetch GET 401 https://example.com/@dazn%2fdaznid?write=true 105ms
npm verb stack Error: Unable to authenticate, need: Basic realm="Artifactory Realm"
npm verb stack at res.buffer.catch.then.body (/usr/local/lib/node_modules/npm/node_modules/npm-registry-fetch/check-response.js:94:17)
npm verb stack at process._tickCallback (internal/process/next_tick.js:68:7)
npm verb statusCode 401
npm verb pkgid @dazn/daznid@2.0.1-rc00002
npm verb cwd /drone/src/github.com/getndazn/com-daznid
npm verb Linux 4.14.128-87.105.amzn1.x86_64
npm verb argv "/usr/local/bin/node" "/usr/local/bin/npm" "unpublish" "-f" "--loglevel" "verbose" "@dazn/daznid@2.0.1-rc00002"
npm verb node v10.17.0
npm verb npm v6.11.3
npm ERR! code E401
npm ERR! Unable to authenticate, need: Basic realm="Artifactory Realm"
npm verb exit [ 1, true ]
npm timing npm Completed in 328ms
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2019-12-05T15_17_19_217Z-debug.log
## Where
* npm enterprise
### Current Behavior
`npm publish` uses registry defined in `publishConfig`
NOTICE `npm http fetch PUT 200
`**`https://registry.npmjs.org/`**`@dazn%2fdaznid 3769ms` in above example
`npm unpublish` uses registry defined in `.npmrc`
NOTICE `npm http fetch GET 401 `**`https://example.com/`**
`@dazn%2fdaznid?write=true 105ms
### Steps to Reproduce
See above
### Expected Behavior
`npm publish` and `npm unpublish` to use same setup (preferably one which
allow to have different registry for pull and push)
## Who
* n/a
## References
Related to npm/npm#3032
| 0 |
**Describe the bug**
I want to wait until a subprocess(like a web server) is ready.
So I'm tried to write the code that reads the stdout of the process in async
iteration and when I get a specific string, break it.
But it seems to be not releasing a TextDecoder if it hasn't completed the
async iteration loop.
Example:
`readablestream_test.ts`
import { TextLineStream, } from "https://deno.land/std@0.129.0/streams/delimiter.ts";
Deno.test("ReadableStream leak memory", async () => {
const process = Deno.run({
cmd: ["ls"],
stdout: "piped",
});
const lines = process.stdout.readable
.pipeThrough(new TextDecoderStream())
.pipeThrough(new TextLineStream());
for await (const _line of lines) {
break;
}
await lines.cancel();
process.kill("SIGTERM");
process.close();
console.log(Deno.resources());
});
We can get the following result.
$ deno run -A readablestream_test.ts
Check file:///Users/ioriikeda/Projects/ts-scraps/leak-error/readablestream_test.ts
running 1 test from file:///Users/ioriikeda/Projects/ts-scraps/leak-error/readablestream_test.ts
test ReadableStream leak memory ...{ "0": "stdin", "1": "stdout", "2": "stderr", "5": "textDecoder" }
FAILED (45ms)
failures:
ReadableStream leak memory
AssertionError: Test case is leaking 1 resource:
- A text decoder (rid 5) was created during the test, but not finsihed during the test. Close the text decoder by calling `textDecoder.decode('')` or `await textDecoderStream.readable.cancel()`.
at assert (deno:runtime/js/06_util.js:46:13)
at resourceSanitizer (deno:runtime/js/40_testing.js:406:7)
at async Object.exitSanitizer [as fn] (deno:runtime/js/40_testing.js:424:9)
at async runTest (deno:runtime/js/40_testing.js:784:7)
at async Object.runTests (deno:runtime/js/40_testing.js:982:22)
failures:
ReadableStream leak memory
test result: FAILED. 0 passed; 1 failed; 0 ignored; 0 measured; 0 filtered out (75ms)
error: Test failed
**Expected behavior**
Release the resource even if an async iteration has not completed when we
break the iteration.
**Environment**
* OS: MacOS 12.1
* deno: deno 1.20.1 (release, x86_64-apple-darwin)
* std: 0.129.0
|
I've come across what seems to be a bug in `TextDecoderStream` which allows it
to leak the native decoder used by its `TextDecoder`.
I've made a test module to demonstrate the issue (repro code is at the bottom
of that page, under the output):
https://gist.github.com/h4l/0199ab7cc24dd13536e01c5ea98b3ae7
The 3 tests trigger the test runner's resource leak detection (a really nice
feature!).
What seems to be happening is:
* `TextDecoderStream` uses a `TextDecoder` to decode its chunks
* `TextDecoder.decode()` creates a native decoder resource, which it holds open when used in streaming mode. It closes the resource when a non-streaming `decode()` call is made.
* `TextDecoderStream` makes streaming `decode()` calls in its `transform()` method, and makes a final non-streaming `decode()` call in its `flush()` method.
* When a stream pipeline is errored, the `flush()` method of any `Transformer` in a `TransformStream` is not called, so in the case of `TextDecoderStream` it has no way to know its no longer in use, and keeps open its decoder.
I was looking through the streams spec when I encountered the leak (before I
worked out the cause) to try to work out if I was misusing the streams in some
way. It seems to me like an oversight in the spec that `Transformer`s have no
way to be told to close/clean up when a stream doesn't close cleanly.
`flush()` is only called when the stream closes normally if I've not missed
something, and there are no other lifecycle methods available for
`Transformer`s.
I can't see any idiomatic way to tell the `Transformer` to close, but one
approach could be to wrap the readable and writable streams of the
`TransformerStream` to watch for `close`/`cancel`/`abort` calls.
I've not made any previous contributions, but I'd be happy to help with a PR
to fix this if it'd be useful.
| 1 |
I'm getting an issue where throwing an unhandled error turns into an infinite
loop because the guarded callback wrapper fails to extract the error from the
event:

This causes the reconciler to ignore the error, thus triggering it again.
To reproduce, I flipped `useSyncScheduling` to `false` in `ReactDOMFiber` (not
sure if that was important), started `examples/real-world` from Redux and
added a `throw` to its `User` component.
|
**Do you want to request a _feature_ or report a _bug_?**
Bug
**What is the current behavior?**
When a component returns something other than a valid React element, or
`null`, it throws and does so infinitely. This is render-blocking and freezes
the window.
**If the current behavior is a bug, please provide the steps to reproduce and
if possible a minimal demo of the problem viahttps://jsfiddle.net or similar
(template: https://jsfiddle.net/reactjs/69z2wepo/).**
This happened to me when creating a Provider-type component that rendered its
children directly. More specifically, when they were `undefined`. Eg
class Provider extends React.Component {
render() {
return this.props.children // should throw once.
}
}
// Elsewhere
<div>
<Provider>this works correctly</Provider>
// This freaks out
<Provider />
</div>

Is there a [CodePen, Fiddle, etc] of `@next` somewhere, that I can use to
demonstrate this?
**What is the expected behavior?**
It should throw, but only once and not freeze the browser.
**Which versions of React, and which browser / OS are affected by this issue?
Did this work in previous versions of React?**
React 16.0.0-alpha.4
Yes, see http://codepen.io/rthor/pen/bqYBap?editors=0010#0
* * *
PS I know it's an alpha version 😄
| 1 |
This is an issue being there since 2.1.
The FormValidator runs the validation of the underlying object graph in 2
cases:
* on the root form
* in case all parents have `cascade_validation` set to `true`
This means that when you have a subform with `mapped` set to `false`, the only
way to have its object graph validation is to enable `cascade_validation` on
all parents of the unmapped field, which will lead to duplicate validation of
the object graph of the parent if it uses `@Assert\Valid()` properly.
As unmapped forms define a new object graph, I think it would make sense to
run the validation on them as well.
/cc @webmozart
|
SF 2.5.2 - after upgrade from 2.4
Validation in fallback mode
After submit form with errors (fields: text, datetime, collection + some
assertions via annotations)
I'm going to webprofiler -> form
Error:
Key "id" for array with keys "submitted_data, errors, synchronized, children" does not exist in @WebProfiler/Collector/form.html.twig at line 417
500 Internal Server Error - Twig_Error_Runtime
| 0 |
For code that builds a UI has to be readable. I understand that Dart is kind
of like a simple version of Java, but it is not really a programming language
for building a UI. For example, it doesn't have a closing tag. As a result, It
is very hard to build a picture in mind with this unreadable code.
Moreover, Flutter was inspired by React. How can Flutter doesn't have JSX but
has this kind of unreadable code? I am very scared that Flutter is going to
die very soon as the early days of AnglurJs.
I understand people who work in Google are smart, but we also have some people
who are not really smart choose React instead of Dart, and this is one of the
reasons why Dart was dead in the past.
|
Please see this movie, from my Nexus 5X: https://youtu.be/VC6spk7P6Xg
Notice how the FAB, while transitioning up, has a square shadow around it. It
doesn't have the square the entire transition, but starting at second 3 of the
transition.
| 0 |
cc @pandas-dev/pandas-core
Targeting Friday June 8th.
|
I am trying to merge multiple dataframe with consecutive merge operations, I
want to add a suffix to the name of the newly merged column names. A
simplified version of my code looks like this:
from pandas import *
f0 = DataFrame(columns=['data'], data=[1,2,3], index=['a','b','c'])
f1 = DataFrame(columns=['data'], data=[4,5,6], index=['c','b','a'])
f2 = DataFrame(columns=['data'], data=[7,8,9], index=['a','c','b'])
merged = f0
merged = merged.merge(f1, left_index=True, right_index=True, suffixes=("_0", "_1"))
merged = merged.merge(f2, left_index=True, right_index=True, suffixes=("", "_2"))
print merged.columns
With pandas 0.15.2 on python 2.7 this returns:
Index([u'data_0', u'data_1', u'data'], dtype='object')
while I would have expected
Index([u'data_0', u'data_1', u'data_2'], dtype='object')
| 0 |
In matplotlib 3.5.1 on Linux (arch and opensuse) pcolormesh is causing some
extreme slowdowns. When I try to zoom or pan inside the window, reactions from
the mouse are very slow, such that the drawn zoom indicator is >1s delayed and
the window/notebook freezes.
The extend varies somewhat by backend. Using the `%matplotlib notebook`
backend in jupyter notebook, freezes as soon as one tries to zoom, and the
kernel has to be restarted. Using Qt5Agg with ipython from the terminal, also
freezes immediately. With the Gtk3Agg backend the window does not fully freeze
but the zoom indicator etc. are extremely laggy.
I checked with `pcolor` and `pcolorfast` as well as `imshow` and all work
fine.
Test case:
import matplotlib.pyplot as plt
import numpy as np
x = np.linspace(-5,5,512)
X,Y = np.meshgrid(x,x)
g = np.exp(-(X**2+Y**2)/2)
plt.figure()
ax = plt.subplot(111)
plt.pcolormesh(X,Y,g)
plt.show()
Run and select the zoom button in the opened window. If using Qt5Agg the
window (and terminal) freezes, CTRL-C only works with very long delay.
|
### Bug summary
After updating to mpl 3.5.0 my program hangs after plotting with pcolormesh(),
no error messages. It works fine witl mpl 3.3.3. When I reduce the nx,ny
values in my program it works fine.
### Code for reproduction
import numpy as np
import matplotlib.pyplot as plt
import cartopy.io.img_tiles as cimgt
import cartopy.crs as ccrs
fig, ax1 = plt.subplots(num="TestXX", figsize=(30/2.54, 25/2.54))
#add a map of the Netherlands
request = cimgt.OSM()
ax1=plt.axes(projection=request.crs)
ax1.set_extent([3.25, 7.35, 50.45, 53.55],ccrs.PlateCarree())
ax1.add_image(request, 10)
#create a rectangular grid a little smaller than the map
#with cell sizes of 0.01 degree filled with random values
nx=400
ny=300
xedges=np.linspace(3.3, 7.3, nx)
yedges=np.linspace(50.5, 53.5, ny)
zvalues=np.random.random((nx, ny))
ax1.pcolormesh(xedges, yedges, zvalues.T ,\
alpha=0.3, shading='auto', transform=ccrs.PlateCarree())
plt.show()
### Actual outcome
Program hangs. Toolbar doesn't response. Hourglass is visible. No errors.

### Expected outcome
Plot has been made. Toolbar works, normal running program.

### Additional information
It worked fine with matplotlib 3.3.3. I can then increase nx,ny to
8000,6000.(I didn't try higher values)
It seems that there is a 'problem' with pcolormesh().
It works fine in mpl 3.5.0 with reduced nx,ny values(i.e. 100,75)
### Operating system
Windows 10
### Matplotlib Version
3.3.3 and 3.5.0
### Matplotlib Backend
Qt5Agg
### Python version
Python 3.8.12
### Jupyter version
_No response_
### Installation
conda
| 1 |
_From@chriskarel on November 3, 2016 19:21_
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
User module
##### ANSIBLE VERSION
# ansible --version
ansible 2.1.2.0
config file = /etc/ansible/ansible.cfg
configured module search path = Default w/o overrides
##### CONFIGURATION
Nothing unusual
##### OS / ENVIRONMENT
OEL/RHEL 7
##### SUMMARY
Using the user module on an existing user, but changing their home directory,
results in the new home directory created with improper filesystem permissions
and SELinux types.
##### STEPS TO REPRODUCE
Have an existing user, with an existing home directory setting. Then use the
Ansible user module to change that home directory. The new directory will be
created, but with the same permissions and SELinux values as the parent
directory, rather than the usual home settings.
# cat bugtest.yaml
---
- name: Showcase bug
hosts: all
tasks:
- name: Create system accounts
user:
name={{item}}
home=/home/{{item}}
state=present
with_items:
- user_existing
- user_not_existing
# useradd -d /home/userold user_existing
# ls -lZd /home/user*
drwx------. user_existing user_existing unconfined_u:object_r:user_home_dir_t:s0 /home/userold
<run the above playbook for this host>
# ls -lZd /home/user*
drwxr-xr-x. user_existing user_existing unconfined_u:object_r:home_root_t:s0 /home/user_existing
drwx------. user_not_existing user_not_existing unconfined_u:object_r:user_home_dir_t:s0 /home/user_not_existing
drwx------. user_existing user_existing unconfined_u:object_r:user_home_dir_t:s0 /home/userold
##### EXPECTED RESULTS
I would expect the new home directory that is created for an existing user
would have similar permissions and SELinux values as a new home directory
created for a brand new user. (eg: permissions of 0700, type of
user_home_dir_t)
This also impacts the .ssh directory, if generate_ssh_key is true. I would
expect the .ssh directory to have ssh_home_t type, but it does not.
##### ACTUAL RESULTS
The new home directory inherits the parent's permissions and SELinux context.
In this case, that's mode 0755 and home_root_t, the same as /home/.
/home/user_existing/ should look more like /home/userold/.
# ls -lZd /home/user*
drwxr-xr-x. user_existing user_existing unconfined_u:object_r:home_root_t:s0 /home/user_existing
drwx------. user_not_existing user_not_existing unconfined_u:object_r:user_home_dir_t:s0 /home/user_not_existing
drw-------. user_existing user_existing unconfined_u:object_r:user_home_dir_t:s0 /home/userold
_Copied from original issue:ansible/ansible-modules-core#5481_
|
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
route53 module
##### ANSIBLE VERSION
ansible 2.2.3.0
##### CONFIGURATION
N/A
##### OS / ENVIRONMENT
N/A
##### SUMMARY
When you have "duplicate" hosted zones in route53 and use `command=get` and
the `hosted_zone_id` parameter, it gets ignored when looking up the
nameservers for the zone. For some reason, instead of using the zone object
that was already looked up (using the module's `get_zone_by_name()` function),
a separate lookup is done using only the name (using the boto
`conn.get_zone()` function), which ends up getting the wrong zone in this
corner case.
The fix should be relatively simple. Instead of doing another lookup for the
zone, the existing `zone` var should just be used for the `.get_nameservers()`
call.
ansible/lib/ansible/modules/cloud/amazon/route53.py
Line 583 in 74f6b64
| z = invoke_with_throttling_retries(conn.get_zone, zone_in)
---|---
##### STEPS TO REPRODUCE
N/A
##### EXPECTED RESULTS
N/A
##### ACTUAL RESULTS
N/A
| 0 |
master branch build error:
ruct std::atomic<long int>’ has no member named ‘GetNext’
lifecycle_id_ = lifecycle_id_generator_.GetNext();
^~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:69:3: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&hint_, 0);
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:70:3: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_, 0);
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:76:75: error: ‘InitBlock’ was not declared in this scope
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:77:5: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:77:17: error: ‘info’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:77:52: error: ‘NewThreadInfo’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:79:5: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_,
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:80:80: error: ‘AtomicWord’ in namespace ‘google::protobuf::internal’ does not name a type
reinterpret_cast<google::protobuf::internal::AtomicWord>(info));
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:81:5: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&space_allocated_,
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:83:30: error: ‘CacheBlock’ was not declared in this scope
CacheBlock(initial_block_);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:85:5: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&space_allocated_, 0);
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:106:19: error: prototype for ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::NewBlock(void*, google::protobuf::internal::ArenaImpl::Block*, size_t)’ does not match any in class ‘google::protobuf::internal::ArenaImpl’
ArenaImpl::Block* ArenaImpl::NewBlock(void* me, Block* my_last_block,
^~~~~~~~~
In file included from /usr/local/include/google/protobuf/arena.h:51:0,
from /media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/usr/local/include/google/protobuf/arena_impl.h:291:10: error: candidate is: google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::NewBlock(google::protobuf::internal::ArenaImpl::Block*, size_t)
Block* NewBlock(Block* last_block, size_t min_bytes);
^~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:106:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
ArenaImpl::Block* ArenaImpl::NewBlock(void* me, Block* my_last_block,
^~~~~
In file included from /usr/local/include/google/protobuf/arena.h:51:0,
from /media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/usr/local/include/google/protobuf/arena_impl.h:215:25: note: declared private here
class PROTOBUF_EXPORT Block {
^~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:125:58: error: no ‘void google::protobuf::internal::ArenaImpl::InitBlock(google::protobuf::internal::ArenaImpl::Block*, void*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
void ArenaImpl::InitBlock(Block* b, void *me, size_t size) {
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:125:27: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
void ArenaImpl::InitBlock(Block* b, void *me, size_t size) {
^~~~~
In file included from /usr/local/include/google/protobuf/arena.h:51:0,
from /media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/usr/local/include/google/protobuf/arena_impl.h:215:25: note: declared private here
class PROTOBUF_EXPORT Block {
^~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:139:63: error: no ‘google::protobuf::internal::ArenaImpl::CleanupChunk* google::protobuf::internal::ArenaImpl::ExpandCleanupList(google::protobuf::internal::ArenaImpl::CleanupChunk*, google::protobuf::internal::ArenaImpl::Block*)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
Block* b) {
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:138:12: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ is private within this context
ArenaImpl::CleanupChunk* ArenaImpl::ExpandCleanupList(CleanupChunk* cleanup,
^~~~~~~~~~~~
In file included from /usr/local/include/google/protobuf/arena.h:51:0,
from /media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/usr/local/include/google/protobuf/arena_impl.h:128:10: note: declared private here
struct CleanupChunk {
^~~~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:139:55: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
Block* b) {
^~~~~
In file included from /usr/local/include/google/protobuf/arena.h:51:0,
from /media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/usr/local/include/google/protobuf/arena_impl.h:215:25: note: declared private here
class PROTOBUF_EXPORT Block {
^~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:155:8: error: ‘GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE’ does not name a type
inline GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::AddCleanup(void*, void (*)(void*))’:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:170:38: error: ‘GetBlock’ was not declared in this scope
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:170:54: error: ‘AddCleanupInBlock’ was not declared in this scope
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:170:54: error: return-statement with a value, in function returning 'void' [-fpermissive]
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void* google::protobuf::internal::ArenaImpl::AllocateAligned(size_t)’:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:176:35: error: ‘GetBlock’ was not declared in this scope
return AllocFromBlock(GetBlock(n), n);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:176:39: error: ‘AllocFromBlock’ was not declared in this scope
return AllocFromBlock(GetBlock(n), n);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void* google::protobuf::internal::ArenaImpl::AllocateAlignedAndAddCleanup(size_t, void (*)(void*))’:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:183:24: error: ‘GetBlock’ was not declared in this scope
Block* b = GetBlock(n);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:184:34: error: ‘AllocFromBlock’ was not declared in this scope
void* mem = AllocFromBlock(b, n);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:185:36: error: ‘AddCleanupInBlock’ was not declared in this scope
AddCleanupInBlock(b, mem, cleanup);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:189:8: error: ‘GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE’ does not name a type
inline GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:217:8: error: ‘GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE’ does not name a type
inline GOOGLE_PROTOBUF_ATTRIBUTE_ALWAYS_INLINE
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:231:51: error: no ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::GetBlockSlow(void*, google::protobuf::internal::ArenaImpl::Block*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
size_t n) {
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:230:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
ArenaImpl::Block* ArenaImpl::GetBlockSlow(void* me, Block* my_full_block,
^~~~~
In file included from /usr/local/include/google/protobuf/arena.h:51:0,
from /media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/usr/local/include/google/protobuf/arena_impl.h:215:25: note: declared private here
class PROTOBUF_EXPORT Block {
^~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::SpaceAllocated() const’:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:248:10: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
return google::protobuf::internal::NoBarrier_Load(&space_allocated_);
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::SpaceUsed() const’:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:252:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:252:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:253:24: error: ‘ThreadInfo’ does not name a type
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘(’ before ‘*’ token
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:253:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:253:37: error: ‘Acquire_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:253:89: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:259:43: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from type ‘google::protobuf::internal::ArenaImpl::Block* (google::protobuf::internal::ArenaImpl::Block::)() const’ to type ‘google::protobuf::internal::ArenaImpl::Block*’
for (Block* b = info->head; b; b = b->next) {
^~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:260:31: error: ‘kHeaderSize’ was not declared in this scope
space_used += (b->pos - kHeaderSize);
^~~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::FreeBlocks()’:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:271:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:271:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:272:24: error: ‘ThreadInfo’ does not name a type
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘(’ before ‘*’ token
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:272:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:272:37: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:272:91: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:276:17: error: ‘next_info’ was not declared in this scope
ThreadInfo* next_info = info->next;
^~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:279:30: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from type ‘google::protobuf::internal::ArenaImpl::Block* (google::protobuf::internal::ArenaImpl::Block::)() const’ to type ‘google::protobuf::internal::ArenaImpl::Block*’
Block* next_block = b->next;
^~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:280:30: error: invalid use of member function ‘size_t google::protobuf::internal::ArenaImpl::Block::size() const’ (did you forget the ‘()’ ?)
space_allocated += (b->size);
~~~~^~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:280:34: error: in evaluation of ‘operator+=(google::protobuf::uint64 {aka long unsigned int}, <unresolved overloaded function type>)’
space_allocated += (b->size);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:289:42: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::size’ from type ‘size_t (google::protobuf::internal::ArenaImpl::Block::)() const {aka long unsigned int (google::protobuf::internal::ArenaImpl::Block::)() const}’ to type ‘size_t {aka long unsigned int}’
options_.block_dealloc(b, b->size);
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::CleanupList()’:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:303:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:303:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:304:24: error: ‘ThreadInfo’ does not name a type
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘(’ before ‘*’ token
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:304:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:304:37: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:304:91: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:309:24: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
size_t n = list->len;
^~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:310:46: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
CleanupNode* node = &list->nodes[list->len - 1];
^~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:319:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::NewThreadInfo(Block* b) {
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:330:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::FindThreadInfo(void* me) {
^~~~~~~~~~
/media/jintain/sg/permanent/software/source_codes/opencv_git/sandbox/opencv/3rdparty/protobuf/src/google/protobuf/arena.cc:342:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::GetThreadInfo(void* me, size_t n) {
^~~~~~~~~~
It's a fresh new opencv, but build with so much more
errors..................... And it's about protobuf???????????????????????
what exactly wrong with this weired problem????????????????
|
##### System information (version)
* OpenCV => 4.0.0
* Operating System / Platform => ubuntu - docker image (jupyter/datascience-notebook:14fdfbf9cfc1)
* Compiler => gcc version 7.3.0 (Ubuntu 7.3.0-27ubuntu1~18.04)
##### Detailed description
Building CXX object
3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
failes with:
...
Scanning dependencies of target libprotobuf
[ 14%] Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:51:29: error: ‘SequenceNumber’ in namespace ‘google::protobuf::internal’ does not name a type
google::protobuf::internal::SequenceNumber ArenaImpl::lifecycle_id_generator_;
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::Init()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:68:43: error: ‘struct std::atomic<long int>’ has no member named ‘GetNext’
lifecycle_id_ = lifecycle_id_generator_.GetNext();
^~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:69:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&hint_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:70:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: error: ‘InitBlock’ was not declared in this scope
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: note: suggested alternative: ‘NewBlock’
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
...
cmake output
Cmake Warnings
CMake Warning at cmake/OpenCVDetectPython.cmake:81 (message):
CMake's 'find_host_package(PythonInterp 2.7)' founds wrong Python version:
PYTHON_EXECUTABLE=/opt/conda/bin/python
PYTHON_VERSION_STRING=3.6.6
Consider specify 'PYTHON2_EXECUTABLE' variable via CMake command line or
environment variables
Call Stack (most recent call first):
cmake/OpenCVDetectPython.cmake:275 (find_python)
CMakeLists.txt:553 (include)
CMake Warning at cmake/OpenCVUtils.cmake:1336 (add_library):
Cannot generate a safe runtime search path for target opencv_core because
files in some directories may conflict with libraries in implicit
directories:
runtime library [libz.so.1] in /usr/lib/x86_64-linux-gnu may be hidden by files in:
/opt/conda/lib
Some of these libraries may not be found correctly.
Call Stack (most recent call first):
cmake/OpenCVModule.cmake:924 (ocv_add_library)
cmake/OpenCVModule.cmake:849 (_ocv_create_module)
modules/core/CMakeLists.txt:72 (ocv_create_module)
-- The CXX compiler identification is GNU 7.3.0
-- The C compiler identification is GNU 7.3.0
-- Check for working CXX compiler: /usr/bin/c++
-- Check for working CXX compiler: /usr/bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Check for working C compiler: /usr/bin/cc
-- Check for working C compiler: /usr/bin/cc -- works
-- Detecting C compiler ABI info
-- Detecting C compiler ABI info - done
-- Detecting C compile features
-- Detecting C compile features - done
-- Found PythonInterp: /opt/conda/bin/python (found suitable version "3.6.6", minimum required is "2.7")
-- Consider using CMake 3.12+ for better Python support
-- Found PythonInterp: /opt/conda/bin/python3 (found suitable version "3.6.6", minimum required is "3.2")
-- Found PythonLibs: /opt/conda/lib/libpython3.6m.so (found suitable exact version "3.6.6")
-- Looking for ccache - not found
-- Performing Test HAVE_CXX_FSIGNED_CHAR
-- Performing Test HAVE_CXX_FSIGNED_CHAR - Success
-- Performing Test HAVE_C_FSIGNED_CHAR
-- Performing Test HAVE_C_FSIGNED_CHAR - Success
-- Performing Test HAVE_CXX_W
-- Performing Test HAVE_CXX_W - Success
-- Performing Test HAVE_C_W
-- Performing Test HAVE_C_W - Success
-- Performing Test HAVE_CXX_WALL
-- Performing Test HAVE_CXX_WALL - Success
-- Performing Test HAVE_C_WALL
-- Performing Test HAVE_C_WALL - Success
-- Performing Test HAVE_CXX_WERROR_RETURN_TYPE
-- Performing Test HAVE_CXX_WERROR_RETURN_TYPE - Success
-- Performing Test HAVE_C_WERROR_RETURN_TYPE
-- Performing Test HAVE_C_WERROR_RETURN_TYPE - Success
-- Performing Test HAVE_CXX_WERROR_NON_VIRTUAL_DTOR
-- Performing Test HAVE_CXX_WERROR_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_C_WERROR_NON_VIRTUAL_DTOR
-- Performing Test HAVE_C_WERROR_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_CXX_WERROR_ADDRESS
-- Performing Test HAVE_CXX_WERROR_ADDRESS - Success
-- Performing Test HAVE_C_WERROR_ADDRESS
-- Performing Test HAVE_C_WERROR_ADDRESS - Success
-- Performing Test HAVE_CXX_WERROR_SEQUENCE_POINT
-- Performing Test HAVE_CXX_WERROR_SEQUENCE_POINT - Success
-- Performing Test HAVE_C_WERROR_SEQUENCE_POINT
-- Performing Test HAVE_C_WERROR_SEQUENCE_POINT - Success
-- Performing Test HAVE_CXX_WFORMAT
-- Performing Test HAVE_CXX_WFORMAT - Success
-- Performing Test HAVE_C_WFORMAT
-- Performing Test HAVE_C_WFORMAT - Success
-- Performing Test HAVE_CXX_WERROR_FORMAT_SECURITY
-- Performing Test HAVE_CXX_WERROR_FORMAT_SECURITY - Success
-- Performing Test HAVE_C_WERROR_FORMAT_SECURITY
-- Performing Test HAVE_C_WERROR_FORMAT_SECURITY - Success
-- Performing Test HAVE_CXX_WMISSING_DECLARATIONS
-- Performing Test HAVE_CXX_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WMISSING_DECLARATIONS
-- Performing Test HAVE_C_WMISSING_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WMISSING_PROTOTYPES
-- Performing Test HAVE_CXX_WMISSING_PROTOTYPES - Failed
-- Performing Test HAVE_C_WMISSING_PROTOTYPES
-- Performing Test HAVE_C_WMISSING_PROTOTYPES - Success
-- Performing Test HAVE_CXX_WSTRICT_PROTOTYPES
-- Performing Test HAVE_CXX_WSTRICT_PROTOTYPES - Failed
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES
-- Performing Test HAVE_C_WSTRICT_PROTOTYPES - Success
-- Performing Test HAVE_CXX_WUNDEF
-- Performing Test HAVE_CXX_WUNDEF - Success
-- Performing Test HAVE_C_WUNDEF
-- Performing Test HAVE_C_WUNDEF - Success
-- Performing Test HAVE_CXX_WINIT_SELF
-- Performing Test HAVE_CXX_WINIT_SELF - Success
-- Performing Test HAVE_C_WINIT_SELF
-- Performing Test HAVE_C_WINIT_SELF - Success
-- Performing Test HAVE_CXX_WPOINTER_ARITH
-- Performing Test HAVE_CXX_WPOINTER_ARITH - Success
-- Performing Test HAVE_C_WPOINTER_ARITH
-- Performing Test HAVE_C_WPOINTER_ARITH - Success
-- Performing Test HAVE_CXX_WSHADOW
-- Performing Test HAVE_CXX_WSHADOW - Success
-- Performing Test HAVE_C_WSHADOW
-- Performing Test HAVE_C_WSHADOW - Success
-- Performing Test HAVE_CXX_WSIGN_PROMO
-- Performing Test HAVE_CXX_WSIGN_PROMO - Success
-- Performing Test HAVE_C_WSIGN_PROMO
-- Performing Test HAVE_C_WSIGN_PROMO - Failed
-- Performing Test HAVE_CXX_WUNINITIALIZED
-- Performing Test HAVE_CXX_WUNINITIALIZED - Success
-- Performing Test HAVE_C_WUNINITIALIZED
-- Performing Test HAVE_C_WUNINITIALIZED - Success
-- Performing Test HAVE_CXX_WNO_NARROWING
-- Performing Test HAVE_CXX_WNO_NARROWING - Success
-- Performing Test HAVE_C_WNO_NARROWING
-- Performing Test HAVE_C_WNO_NARROWING - Success
-- Performing Test HAVE_CXX_WNO_DELETE_NON_VIRTUAL_DTOR
-- Performing Test HAVE_CXX_WNO_DELETE_NON_VIRTUAL_DTOR - Success
-- Performing Test HAVE_C_WNO_DELETE_NON_VIRTUAL_DTOR
-- Performing Test HAVE_C_WNO_DELETE_NON_VIRTUAL_DTOR - Failed
-- Performing Test HAVE_CXX_WNO_UNNAMED_TYPE_TEMPLATE_ARGS
-- Performing Test HAVE_CXX_WNO_UNNAMED_TYPE_TEMPLATE_ARGS - Failed
-- Performing Test HAVE_C_WNO_UNNAMED_TYPE_TEMPLATE_ARGS
-- Performing Test HAVE_C_WNO_UNNAMED_TYPE_TEMPLATE_ARGS - Failed
-- Performing Test HAVE_CXX_WNO_COMMENT
-- Performing Test HAVE_CXX_WNO_COMMENT - Success
-- Performing Test HAVE_C_WNO_COMMENT
-- Performing Test HAVE_C_WNO_COMMENT - Success
-- Performing Test HAVE_CXX_WIMPLICIT_FALLTHROUGH_3
-- Performing Test HAVE_CXX_WIMPLICIT_FALLTHROUGH_3 - Success
-- Performing Test HAVE_C_WIMPLICIT_FALLTHROUGH_3
-- Performing Test HAVE_C_WIMPLICIT_FALLTHROUGH_3 - Success
-- Performing Test HAVE_CXX_WNO_STRICT_OVERFLOW
-- Performing Test HAVE_CXX_WNO_STRICT_OVERFLOW - Success
-- Performing Test HAVE_C_WNO_STRICT_OVERFLOW
-- Performing Test HAVE_C_WNO_STRICT_OVERFLOW - Success
-- Performing Test HAVE_CXX_FDIAGNOSTICS_SHOW_OPTION
-- Performing Test HAVE_CXX_FDIAGNOSTICS_SHOW_OPTION - Success
-- Performing Test HAVE_C_FDIAGNOSTICS_SHOW_OPTION
-- Performing Test HAVE_C_FDIAGNOSTICS_SHOW_OPTION - Success
-- Performing Test HAVE_CXX_WNO_LONG_LONG
-- Performing Test HAVE_CXX_WNO_LONG_LONG - Success
-- Performing Test HAVE_C_WNO_LONG_LONG
-- Performing Test HAVE_C_WNO_LONG_LONG - Success
-- Performing Test HAVE_CXX_PTHREAD
-- Performing Test HAVE_CXX_PTHREAD - Success
-- Performing Test HAVE_C_PTHREAD
-- Performing Test HAVE_C_PTHREAD - Success
-- Performing Test HAVE_CXX_FOMIT_FRAME_POINTER
-- Performing Test HAVE_CXX_FOMIT_FRAME_POINTER - Success
-- Performing Test HAVE_C_FOMIT_FRAME_POINTER
-- Performing Test HAVE_C_FOMIT_FRAME_POINTER - Success
-- Performing Test HAVE_CXX_FFUNCTION_SECTIONS
-- Performing Test HAVE_CXX_FFUNCTION_SECTIONS - Success
-- Performing Test HAVE_C_FFUNCTION_SECTIONS
-- Performing Test HAVE_C_FFUNCTION_SECTIONS - Success
-- Performing Test HAVE_CXX_FDATA_SECTIONS
-- Performing Test HAVE_CXX_FDATA_SECTIONS - Success
-- Performing Test HAVE_C_FDATA_SECTIONS
-- Performing Test HAVE_C_FDATA_SECTIONS - Success
-- Performing Test HAVE_CXX_MSSE (check file: cmake/checks/cpu_sse.cpp)
-- Performing Test HAVE_CXX_MSSE - Success
-- Performing Test HAVE_CXX_MSSE2 (check file: cmake/checks/cpu_sse2.cpp)
-- Performing Test HAVE_CXX_MSSE2 - Success
-- Performing Test HAVE_CXX_MSSE3 (check file: cmake/checks/cpu_sse3.cpp)
-- Performing Test HAVE_CXX_MSSE3 - Success
-- Performing Test HAVE_CXX_MSSSE3 (check file: cmake/checks/cpu_ssse3.cpp)
-- Performing Test HAVE_CXX_MSSSE3 - Success
-- Performing Test HAVE_CXX_MSSE4_1 (check file: cmake/checks/cpu_sse41.cpp)
-- Performing Test HAVE_CXX_MSSE4_1 - Success
-- Performing Test HAVE_CXX_MPOPCNT (check file: cmake/checks/cpu_popcnt.cpp)
-- Performing Test HAVE_CXX_MPOPCNT - Success
-- Performing Test HAVE_CXX_MSSE4_2 (check file: cmake/checks/cpu_sse42.cpp)
-- Performing Test HAVE_CXX_MSSE4_2 - Success
-- Performing Test HAVE_CXX_MF16C (check file: cmake/checks/cpu_fp16.cpp)
-- Performing Test HAVE_CXX_MF16C - Success
-- Performing Test HAVE_CXX_MFMA
-- Performing Test HAVE_CXX_MFMA - Success
-- Performing Test HAVE_CXX_MAVX (check file: cmake/checks/cpu_avx.cpp)
-- Performing Test HAVE_CXX_MAVX - Success
-- Performing Test HAVE_CXX_MAVX2 (check file: cmake/checks/cpu_avx2.cpp)
-- Performing Test HAVE_CXX_MAVX2 - Success
-- Performing Test HAVE_CXX_MAVX512F (check file: cmake/checks/cpu_avx512.cpp)
-- Performing Test HAVE_CXX_MAVX512F - Success
-- Performing Test HAVE_CXX_MAVX512F_MAVX512CD_MAVX512VL_MAVX512BW_MAVX512DQ (check file: cmake/checks/cpu_avx512skx.cpp)
-- Performing Test HAVE_CXX_MAVX512F_MAVX512CD_MAVX512VL_MAVX512BW_MAVX512DQ - Success
-- Performing Test HAVE_CPU_BASELINE_FLAGS
-- Performing Test HAVE_CPU_BASELINE_FLAGS - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_1 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_SSE4_2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_FP16 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX2 - Success
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX
-- Performing Test HAVE_CPU_DISPATCH_FLAGS_AVX512_SKX - Success
-- Performing Test HAVE_CXX_FVISIBILITY_HIDDEN
-- Performing Test HAVE_CXX_FVISIBILITY_HIDDEN - Success
-- Performing Test HAVE_C_FVISIBILITY_HIDDEN
-- Performing Test HAVE_C_FVISIBILITY_HIDDEN - Success
-- Performing Test HAVE_CXX_FVISIBILITY_INLINES_HIDDEN
-- Performing Test HAVE_CXX_FVISIBILITY_INLINES_HIDDEN - Success
-- Performing Test HAVE_C_FVISIBILITY_INLINES_HIDDEN
-- Performing Test HAVE_C_FVISIBILITY_INLINES_HIDDEN - Failed
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for posix_memalign
-- Looking for posix_memalign - found
-- Looking for malloc.h
-- Looking for malloc.h - found
-- Looking for memalign
-- Looking for memalign - found
-- Check if the system is big endian
-- Searching 16 bit integer
-- Looking for sys/types.h
-- Looking for sys/types.h - found
-- Looking for stdint.h
-- Looking for stdint.h - found
-- Looking for stddef.h
-- Looking for stddef.h - found
-- Check size of unsigned short
-- Check size of unsigned short - done
-- Using unsigned short
-- Check if the system is big endian - little endian
-- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found suitable version "1.2.11", minimum required is "1.2.3")
-- Found JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so
-- Found TIFF: /usr/lib/x86_64-linux-gnu/libtiff.so (found version "4.0.9")
-- Performing Test HAVE_C_WNO_UNUSED_VARIABLE
-- Performing Test HAVE_C_WNO_UNUSED_VARIABLE - Success
-- Performing Test HAVE_C_WNO_UNUSED_FUNCTION
-- Performing Test HAVE_C_WNO_UNUSED_FUNCTION - Success
-- Performing Test HAVE_C_WNO_SHADOW
-- Performing Test HAVE_C_WNO_SHADOW - Success
-- Performing Test HAVE_C_WNO_MAYBE_UNINITIALIZED
-- Performing Test HAVE_C_WNO_MAYBE_UNINITIALIZED - Success
-- Performing Test HAVE_C_WNO_MISSING_PROTOTYPES
-- Performing Test HAVE_C_WNO_MISSING_PROTOTYPES - Success
-- Performing Test HAVE_C_WNO_MISSING_DECLARATIONS
-- Performing Test HAVE_C_WNO_MISSING_DECLARATIONS - Success
-- Performing Test HAVE_C_WNO_IMPLICIT_FALLTHROUGH
-- Performing Test HAVE_C_WNO_IMPLICIT_FALLTHROUGH - Success
-- Could NOT find Jasper (missing: JASPER_LIBRARIES JASPER_INCLUDE_DIR)
-- Performing Test HAVE_C_WNO_IMPLICIT_FUNCTION_DECLARATION
-- Performing Test HAVE_C_WNO_IMPLICIT_FUNCTION_DECLARATION - Success
-- Performing Test HAVE_C_WNO_UNINITIALIZED
-- Performing Test HAVE_C_WNO_UNINITIALIZED - Success
-- Performing Test HAVE_C_WNO_UNUSED_BUT_SET_PARAMETER
-- Performing Test HAVE_C_WNO_UNUSED_BUT_SET_PARAMETER - Success
-- Performing Test HAVE_C_WNO_UNUSED
-- Performing Test HAVE_C_WNO_UNUSED - Success
-- Performing Test HAVE_C_WNO_SIGN_COMPARE
-- Performing Test HAVE_C_WNO_SIGN_COMPARE - Success
-- Performing Test HAVE_C_WNO_POINTER_COMPARE
-- Performing Test HAVE_C_WNO_POINTER_COMPARE - Success
-- Performing Test HAVE_C_WNO_ABSOLUTE_VALUE
-- Performing Test HAVE_C_WNO_ABSOLUTE_VALUE - Failed
-- Performing Test HAVE_C_WNO_UNUSED_PARAMETER
-- Performing Test HAVE_C_WNO_UNUSED_PARAMETER - Success
-- Performing Test HAVE_C_WNO_STRICT_PROTOTYPES
-- Performing Test HAVE_C_WNO_STRICT_PROTOTYPES - Success
-- Found ZLIB: /usr/lib/x86_64-linux-gnu/libz.so (found version "1.2.11")
-- Found PNG: /usr/lib/x86_64-linux-gnu/libpng.so (found version "1.6.34")
-- Looking for /usr/include/libpng/png.h
-- Looking for /usr/include/libpng/png.h - found
-- Looking for semaphore.h
-- Looking for semaphore.h - found
-- Performing Test HAVE_CXX_WNO_SHADOW
-- Performing Test HAVE_CXX_WNO_SHADOW - Success
-- Performing Test HAVE_CXX_WNO_UNUSED
-- Performing Test HAVE_CXX_WNO_UNUSED - Success
-- Performing Test HAVE_CXX_WNO_SIGN_COMPARE
-- Performing Test HAVE_CXX_WNO_SIGN_COMPARE - Success
-- Performing Test HAVE_CXX_WNO_UNDEF
-- Performing Test HAVE_CXX_WNO_UNDEF - Success
-- Performing Test HAVE_CXX_WNO_MISSING_DECLARATIONS
-- Performing Test HAVE_CXX_WNO_MISSING_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WNO_UNINITIALIZED
-- Performing Test HAVE_CXX_WNO_UNINITIALIZED - Success
-- Performing Test HAVE_CXX_WNO_SWITCH
-- Performing Test HAVE_CXX_WNO_SWITCH - Success
-- Performing Test HAVE_CXX_WNO_PARENTHESES
-- Performing Test HAVE_CXX_WNO_PARENTHESES - Success
-- Performing Test HAVE_CXX_WNO_ARRAY_BOUNDS
-- Performing Test HAVE_CXX_WNO_ARRAY_BOUNDS - Success
-- Performing Test HAVE_CXX_WNO_EXTRA
-- Performing Test HAVE_CXX_WNO_EXTRA - Success
-- Performing Test HAVE_CXX_WNO_DEPRECATED_DECLARATIONS
-- Performing Test HAVE_CXX_WNO_DEPRECATED_DECLARATIONS - Success
-- Performing Test HAVE_CXX_WNO_MISLEADING_INDENTATION
-- Performing Test HAVE_CXX_WNO_MISLEADING_INDENTATION - Success
-- Performing Test HAVE_CXX_WNO_DEPRECATED
-- Performing Test HAVE_CXX_WNO_DEPRECATED - Success
-- Performing Test HAVE_CXX_WNO_SUGGEST_OVERRIDE
-- Performing Test HAVE_CXX_WNO_SUGGEST_OVERRIDE - Success
-- Performing Test HAVE_CXX_WNO_INCONSISTENT_MISSING_OVERRIDE
-- Performing Test HAVE_CXX_WNO_INCONSISTENT_MISSING_OVERRIDE - Failed
-- Performing Test HAVE_CXX_WNO_IMPLICIT_FALLTHROUGH
-- Performing Test HAVE_CXX_WNO_IMPLICIT_FALLTHROUGH - Success
-- Checking for module 'gtk+-3.0'
-- No package 'gtk+-3.0' found
-- Checking for module 'gtk+-2.0'
-- No package 'gtk+-2.0' found
-- Checking for module 'gthread-2.0'
-- No package 'gthread-2.0' found
-- Checking for module 'gstreamer-base-1.0'
-- No package 'gstreamer-base-1.0' found
-- Checking for module 'gstreamer-video-1.0'
-- No package 'gstreamer-video-1.0' found
-- Checking for module 'gstreamer-app-1.0'
-- No package 'gstreamer-app-1.0' found
-- Checking for module 'gstreamer-riff-1.0'
-- No package 'gstreamer-riff-1.0' found
-- Checking for module 'gstreamer-pbutils-1.0'
-- No package 'gstreamer-pbutils-1.0' found
-- Checking for module 'gstreamer-base-0.10'
-- No package 'gstreamer-base-0.10' found
-- Checking for module 'gstreamer-video-0.10'
-- No package 'gstreamer-video-0.10' found
-- Checking for module 'gstreamer-app-0.10'
-- No package 'gstreamer-app-0.10' found
-- Checking for module 'gstreamer-riff-0.10'
-- No package 'gstreamer-riff-0.10' found
-- Checking for module 'gstreamer-pbutils-0.10'
-- No package 'gstreamer-pbutils-0.10' found
-- Checking for module 'libdc1394-2'
-- No package 'libdc1394-2' found
-- Checking for module 'libdc1394'
-- No package 'libdc1394' found
-- Looking for linux/videodev2.h
-- Looking for linux/videodev2.h - found
-- Looking for sys/videoio.h
-- Looking for sys/videoio.h - not found
-- Checking for modules 'libavcodec;libavformat;libavutil;libswscale'
-- Found libavcodec, version 57.107.100
-- Found libavformat, version 57.83.100
-- Found libavutil, version 55.78.100
-- Found libswscale, version 4.8.100
-- Checking for module 'libavresample'
-- No package 'libavresample' found
-- IPPICV: Download: ippicv_2019_lnx_intel64_general_20180723.tgz
-- found Intel IPP (ICV version): 2019.0.0 [2019.0.0 Gold]
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/icv
-- found Intel IPP Integration Wrappers sources: 2019.0.0
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/iw
-- Could not find OpenBLAS include. Turning OpenBLAS_FOUND off
-- Could not find OpenBLAS lib. Turning OpenBLAS_FOUND off
-- Could NOT find Atlas (missing: Atlas_BLAS_LIBRARY)
-- Looking for sgemm_
-- Looking for sgemm_ - found
-- Looking for pthread.h
-- Looking for pthread.h - found
-- Looking for pthread_create
-- Looking for pthread_create - found
-- Found Threads: TRUE
-- A library with BLAS API found.
-- Looking for cheev_
-- Looking for cheev_ - found
-- A library with LAPACK API found.
-- LAPACK(LAPACK/Generic): LAPACK_LIBRARIES: /opt/conda/lib/libopenblas.so;/opt/conda/lib/libopenblas.so
-- LAPACK(LAPACK/Generic): Support is enabled.
-- Performing Test HAVE_CXX_WNO_MISSING_PROTOTYPES
-- Performing Test HAVE_CXX_WNO_MISSING_PROTOTYPES - Failed
-- Performing Test HAVE_CXX_WNO_UNUSED_PARAMETER
-- Performing Test HAVE_CXX_WNO_UNUSED_PARAMETER - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_LOCAL_TYPEDEFS
-- Performing Test HAVE_CXX_WNO_UNUSED_LOCAL_TYPEDEFS - Success
-- Performing Test HAVE_CXX_WNO_SIGN_PROMO
-- Performing Test HAVE_CXX_WNO_SIGN_PROMO - Success
-- Performing Test HAVE_CXX_WNO_TAUTOLOGICAL_UNDEFINED_COMPARE
-- Performing Test HAVE_CXX_WNO_TAUTOLOGICAL_UNDEFINED_COMPARE - Failed
-- Performing Test HAVE_CXX_WNO_IGNORED_QUALIFIERS
-- Performing Test HAVE_CXX_WNO_IGNORED_QUALIFIERS - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_FUNCTION
-- Performing Test HAVE_CXX_WNO_UNUSED_FUNCTION - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_CONST_VARIABLE
-- Performing Test HAVE_CXX_WNO_UNUSED_CONST_VARIABLE - Success
-- Performing Test HAVE_CXX_WNO_SHORTEN_64_TO_32
-- Performing Test HAVE_CXX_WNO_SHORTEN_64_TO_32 - Failed
-- Performing Test HAVE_CXX_WNO_INVALID_OFFSETOF
-- Performing Test HAVE_CXX_WNO_INVALID_OFFSETOF - Success
-- Performing Test HAVE_CXX_WNO_ENUM_COMPARE_SWITCH
-- Performing Test HAVE_CXX_WNO_ENUM_COMPARE_SWITCH - Failed
-- Could NOT find JNI (missing: JAVA_AWT_LIBRARY JAVA_JVM_LIBRARY JAVA_INCLUDE_PATH JAVA_INCLUDE_PATH2 JAVA_AWT_INCLUDE_PATH)
-- Could NOT find Pylint (missing: PYLINT_EXECUTABLE)
-- Could NOT find Flake8 (missing: FLAKE8_EXECUTABLE)
-- VTK is not found. Please set -DVTK_DIR in CMake to VTK build directory, or to VTK install subdirectory with VTKConfig.cmake file
-- Looking for dlerror in dl
-- Looking for dlerror in dl - found
-- Performing Test HAVE_C_WNO_UNDEF
-- Performing Test HAVE_C_WNO_UNDEF - Success
-- ADE: Download: v0.1.1d.zip
-- OpenCV Python: during development append to PYTHONPATH: /home/jovyan/opencv-4.0.0/cmake_binary/python_loader
-- Performing Test HAVE_CXX_WNO_OVERLOADED_VIRTUAL
-- Performing Test HAVE_CXX_WNO_OVERLOADED_VIRTUAL - Success
-- Performing Test HAVE_CXX_WNO_UNUSED_PRIVATE_FIELD
-- Performing Test HAVE_CXX_WNO_UNUSED_PRIVATE_FIELD - Failed
-- OpenCL samples are skipped: OpenCL SDK is required
--
-- General configuration for OpenCV 4.0.0 =====================================
-- Version control: unknown
--
-- Platform:
-- Timestamp: 2018-11-29T09:51:17Z
-- Host: Linux 4.9.125-linuxkit x86_64
-- CMake: 3.10.2
-- CMake generator: Unix Makefiles
-- CMake build tool: /usr/bin/make
-- Configuration: RELEASE
--
-- CPU/HW features:
-- Baseline: SSE SSE2 SSE3
-- requested: SSE3
-- Dispatched code generation: SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX
-- requested: SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX
-- SSE4_1 (7 files): + SSSE3 SSE4_1
-- SSE4_2 (2 files): + SSSE3 SSE4_1 POPCNT SSE4_2
-- FP16 (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX
-- AVX (5 files): + SSSE3 SSE4_1 POPCNT SSE4_2 AVX
-- AVX2 (13 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2
-- AVX512_SKX (1 files): + SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_SKX
--
-- C/C++:
-- Built as dynamic libs?: YES
-- C++ Compiler: /usr/bin/c++ (ver 7.3.0)
-- C++ flags (Release): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG -DNDEBUG
-- C++ flags (Debug): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Winit-self -Wno-narrowing -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -g -O0 -DDEBUG -D_DEBUG
-- C Compiler: /usr/bin/cc
-- C flags (Release): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG -DNDEBUG
-- C flags (Debug): -fsigned-char -W -Wall -Werror=return-type -Werror=non-virtual-dtor -Werror=address -Werror=sequence-point -Wformat -Werror=format-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Winit-self -Wno-narrowing -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections -msse -msse2 -msse3 -fvisibility=hidden -g -O0 -DDEBUG -D_DEBUG
-- Linker flags (Release):
-- Linker flags (Debug):
-- ccache: NO
-- Precompiled headers: YES
-- Extra dependencies: dl m pthread rt
-- 3rdparty dependencies:
--
-- OpenCV modules:
-- To be built: calib3d core dnn features2d flann gapi highgui imgcodecs imgproc java_bindings_generator ml objdetect photo python3 python_bindings_generator stitching ts video videoio
-- Disabled: world
-- Disabled by dependency: -
-- Unavailable: java js python2
-- Applications: tests perf_tests examples apps
-- Documentation: NO
-- Non-free algorithms: NO
--
-- GUI:
-- GTK+: NO
-- VTK support: NO
--
-- Media I/O:
-- ZLib: /usr/lib/x86_64-linux-gnu/libz.so (ver 1.2.11)
-- JPEG: /usr/lib/x86_64-linux-gnu/libjpeg.so (ver 80)
-- WEBP: build (ver encoder: 0x020e)
-- PNG: /usr/lib/x86_64-linux-gnu/libpng.so (ver 1.6.34)
-- TIFF: /usr/lib/x86_64-linux-gnu/libtiff.so (ver 42 / 4.0.9)
-- JPEG 2000: build (ver 1.900.1)
-- OpenEXR: build (ver 1.7.1)
-- HDR: YES
-- SUNRASTER: YES
-- PXM: YES
-- PFM: YES
--
-- Video I/O:
-- DC1394: NO
-- FFMPEG: YES
-- avcodec: YES (ver 57.107.100)
-- avformat: YES (ver 57.83.100)
-- avutil: YES (ver 55.78.100)
-- swscale: YES (ver 4.8.100)
-- avresample: NO
-- GStreamer: NO
-- v4l/v4l2: linux/videodev2.h
--
-- Parallel framework: pthreads
--
-- Trace: YES (with Intel ITT)
--
-- Other third-party libraries:
-- Intel IPP: 2019.0.0 Gold [2019.0.0]
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/icv
-- Intel IPP IW: sources (2019.0.0)
-- at: /home/jovyan/opencv-4.0.0/cmake_binary/3rdparty/ippicv/ippicv_lnx/iw
-- Lapack: YES (/opt/conda/lib/libopenblas.so /opt/conda/lib/libopenblas.so)
-- Eigen: NO
-- Custom HAL: NO
-- Protobuf: build (3.5.1)
--
-- OpenCL: YES (no extra features)
-- Include path: /home/jovyan/opencv-4.0.0/3rdparty/include/opencl/1.2
-- Link libraries: Dynamic load
--
-- Python 3:
-- Interpreter: /opt/conda/bin/python3 (ver 3.6.6)
-- Libraries: /opt/conda/lib/libpython3.6m.so (ver 3.6.6)
-- numpy: /opt/conda/lib/python3.6/site-packages/numpy/core/include (ver 1.13.3)
-- packages path: lib/python3.6/site-packages
--
-- Python (for build): /opt/conda/bin/python3
--
-- Java:
-- ant: NO
-- JNI: NO
-- Java wrappers: NO
-- Java tests: NO
--
-- Install to: /opt/conda
-- -----------------------------------------------------------------
--
-- Configuring done
-- Generating done
-- Build files have been written to: /home/jovyan/opencv-4.0.0/cmake_binary
Build output
root@b32f60382b10:~/opencv-4.0.0/cmake_binary# make clean install
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/alpha_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/buffer_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/frame_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/idec_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/io_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/quant_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/tree_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/vp8_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/vp8l_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dec/webp_dec.c.o
[ 0%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/demux/anim_decode.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/demux/demux.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_neon.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_sse2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/alpha_processing_sse41.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_mips32.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cost_sse2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/cpu.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_clip_tables.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_mips32.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_mips_dsp_r2.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_msa.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_neon.c.o
[ 1%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/dec_sse41.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_avx2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_mips32.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_msa.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_neon.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/enc_sse41.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_msa.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_neon.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/filters_sse2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_mips32.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_mips_dsp_r2.c.o
[ 2%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_enc_sse41.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/lossless_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_mips32.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_msa.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_neon.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/rescaler_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/ssim.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/ssim_sse2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_mips_dsp_r2.c.o
[ 3%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_msa.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_neon.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_sse2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/upsampling_sse41.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_mips32.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_mips_dsp_r2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_neon.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_sse2.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/dsp/yuv_sse41.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/alpha_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/analysis_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/backward_references_cost_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/backward_references_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/config_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/cost_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/filter_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/frame_enc.c.o
[ 4%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/histogram_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/iterator_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/near_lossless_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_csp_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_psnr_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_rescale_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/picture_tools_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/predictor_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/quant_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/syntax_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/token_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/tree_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/vp8l_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/enc/webp_enc.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/anim_encode.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxedit.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxinternal.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/mux/muxread.c.o
[ 5%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/bit_reader_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/bit_writer_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/color_cache_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/filters_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/huffman_encode_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/huffman_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/quant_levels_dec_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/quant_levels_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/random_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/rescaler_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/thread_utils.c.o
[ 6%] Building C object 3rdparty/libwebp/CMakeFiles/libwebp.dir/src/utils/utils.c.o
[ 6%] Linking C static library ../lib/liblibwebp.a
[ 6%] Built target libwebp
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_cm.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_debug.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_getopt.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_icc.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_iccdata.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_image.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_init.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_malloc.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_seq.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_stream.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_string.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_tmr.c.o
[ 6%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_tvp.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jas_version.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jp2_enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_bs.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_cs.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_math.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mct.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqcod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqdec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_mqenc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_qmfb.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1dec.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t1enc.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2cod.c.o
[ 7%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2dec.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_t2enc.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_tagtree.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_tsfb.c.o
[ 8%] Building C object 3rdparty/libjasper/CMakeFiles/libjasper.dir/jpc_util.c.o
[ 8%] Linking C static library ../lib/liblibjasper.a
[ 8%] Built target libjasper
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Half/half.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Iex/IexBaseExc.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Iex/IexThrowErrnoExc.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThread.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadMutex.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadMutexPosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadPool.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadPosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphore.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphorePosix.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmThread/IlmThreadSemaphorePosixCompat.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathColorAlgo.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathFun.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathMatrixAlgo.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathRandom.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/Imath/ImathVec.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfAcesFile.cpp.o
[ 8%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfB44Compressor.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfBoxAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCRgbaFile.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChannelList.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChannelListAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChromaticities.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfChromaticitiesAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCompressionAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfCompressor.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfConvert.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfDoubleAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfEnvmap.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfEnvmapAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFloatAttribute.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFrameBuffer.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfFramesPerSecond.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfHeader.cpp.o
[ 9%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfHuf.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfIO.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfInputFile.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfIntAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfKeyCode.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfKeyCodeAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfLineOrderAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfLut.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMatrixAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMisc.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfMultiView.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfOpaqueAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfOutputFile.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPizCompressor.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPreviewImage.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPreviewImageAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfPxr24Compressor.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRational.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRationalAttribute.cpp.o
[ 10%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRgbaFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRgbaYca.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfRleCompressor.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfScanLineInputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStandardAttributes.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStdIO.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStringAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfStringVectorAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTestFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfThreading.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTileDescriptionAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTileOffsets.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledInputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledMisc.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledOutputFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTiledRgbaFile.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTimeCode.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfTimeCodeAttribute.cpp.o
[ 11%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfVecAttribute.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfVersion.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfWav.cpp.o
[ 12%] Building CXX object 3rdparty/openexr/CMakeFiles/IlmImf.dir/IlmImf/ImfZipCompressor.cpp.o
[ 12%] Linking CXX static library ../lib/libIlmImf.a
[ 12%] Built target IlmImf
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_core.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_color_convert_all.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_color_convert_rgbs.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_bilateral.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_box.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_canny.c.o
[ 12%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_gaussian.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_general.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_laplacian.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_morphology.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_scharr.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_filter_sobel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_channel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_make_border.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_merge.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_copy_split.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_scale.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_set.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_set_channel.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_op_swap_channels.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_mirror.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_resize.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_rotate.c.o
[ 13%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_image_transform_warpaffine.c.o
[ 14%] Building C object 3rdparty/ippiw/CMakeFiles/ippiw.dir/src/iw_own.c.o
[ 14%] Linking C static library ../lib/libippiw.a
[ 14%] Built target ippiw
[ 14%] Building CXX object 3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:51:29: error: ‘SequenceNumber’ in namespace ‘google::protobuf::internal’ does not name a type
google::protobuf::internal::SequenceNumber ArenaImpl::lifecycle_id_generator_;
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::Init()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:68:43: error: ‘struct std::atomic<long int>’ has no member named ‘GetNext’
lifecycle_id_ = lifecycle_id_generator_.GetNext();
^~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:69:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&hint_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:70:31: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: error: ‘InitBlock’ was not declared in this scope
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:76:5: note: suggested alternative: ‘NewBlock’
InitBlock(initial_block_, &thread_cache(), options_.initial_block_size);
^~~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:5: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:5: note: suggested alternative: ‘threads_’
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:17: error: ‘info’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:17: note: suggested alternative: ‘int8’
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:77:24: error: ‘NewThreadInfo’ was not declared in this scope
ThreadInfo* info = NewThreadInfo(initial_block_);
^~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:79:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&threads_,
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:80:80: error: ‘AtomicWord’ in namespace ‘google::protobuf::internal’ does not name a type
reinterpret_cast<google::protobuf::internal::AtomicWord>(info));
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:81:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&space_allocated_,
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:83:5: error: ‘CacheBlock’ was not declared in this scope
CacheBlock(initial_block_);
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:83:5: note: suggested alternative: ‘FreeBlocks’
CacheBlock(initial_block_);
^~~~~~~~~~
FreeBlocks
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:85:33: error: ‘NoBarrier_Store’ is not a member of ‘google::protobuf::internal’
google::protobuf::internal::NoBarrier_Store(&space_allocated_, 0);
^~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:106:19: error: prototype for ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::NewBlock(void*, google::protobuf::internal::ArenaImpl::Block*, size_t)’ does not match any in class ‘google::protobuf::internal::ArenaImpl’
ArenaImpl::Block* ArenaImpl::NewBlock(void* me, Block* my_last_block,
^~~~~~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:291:10: error: candidate is: google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::NewBlock(google::protobuf::internal::ArenaImpl::Block*, size_t)
Block* NewBlock(Block* last_block, size_t min_bytes);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:106:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block* ArenaImpl::NewBlock(void* me, Block* my_last_block,
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:125:58: error: no ‘void google::protobuf::internal::ArenaImpl::InitBlock(google::protobuf::internal::ArenaImpl::Block*, void*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
void ArenaImpl::InitBlock(Block* b, void *me, size_t size) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:125:27: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context void ArenaImpl::InitBlock(Block* b, void *me, size_t size) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:139:63: error: no ‘google::protobuf::internal::ArenaImpl::CleanupChunk* google::protobuf::internal::ArenaImpl::ExpandCleanupList(google::protobuf::internal::ArenaImpl::CleanupChunk*, google::protobuf::internal::ArenaImpl::Block*)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
Block* b) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:138:12: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ is private within this context
ArenaImpl::CleanupChunk* ArenaImpl::ExpandCleanupList(CleanupChunk* cleanup,
^~~~~~~~~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:128:10: note: declared private here
struct CleanupChunk {
^~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:139:55: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
Block* b) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:157:46: error: no ‘void google::protobuf::internal::ArenaImpl::AddCleanupInBlock(google::protobuf::internal::ArenaImpl::Block*, void*, void (*)(void*))’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
Block* b, void* elem, void (*func)(void*)) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:157:5: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context
Block* b, void* elem, void (*func)(void*)) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::AddCleanup(void*, void (*)(void*) ’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:28: error: ‘GetBlock’ was not declared in this scope
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:28: note: suggested alternative: ‘NewBlock’
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:10: error: ‘AddCleanupInBlock’ was not declared in this scope
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:10: note: suggested alternative: ‘AddCleanupFallback’
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^~~~~~~~~~~~~~~~~
AddCleanupFallback
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:170:54: error: return-statement with a value, in function returning 'void' [-fpermissive]
return AddCleanupInBlock(GetBlock(0), elem, cleanup);
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void* google::protobuf::internal::ArenaImpl::AllocateAligned(size_t)’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:25: error: ‘GetBlock’ was not declared in this scope
return AllocFromBlock(GetBlock(n), n);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:25: note: suggested alternative: ‘NewBlock’
return AllocFromBlock(GetBlock(n), n);
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:176:10: error: ‘AllocFromBlock’ was not declared in this scope
return AllocFromBlock(GetBlock(n), n);
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void* google::protobuf::internal::ArenaImpl::AllocateAlignedAndAddCleanup(size_t, void (*)(void*))’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:183:14: error: ‘GetBlock’ was not declared in this scope
Block* b = GetBlock(n);
^~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:183:14: note: suggested alternative: ‘NewBlock’
Block* b = GetBlock(n);
^~~~~~~~
NewBlock
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:184:15: error: ‘AllocFromBlock’ was not declared in this scope
void* mem = AllocFromBlock(b, n);
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:185:3: error: ‘AddCleanupInBlock’ was not declared in this scope
AddCleanupInBlock(b, mem, cleanup);
^~~~~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:185:3: note: suggested alternative: ‘AddCleanupFallback’
AddCleanupInBlock(b, mem, cleanup);
^~~~~~~~~~~~~~~~~
AddCleanupFallback
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:190:47: error: no ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::GetBlock(size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
ArenaImpl::Block* ArenaImpl::GetBlock(size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:190:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block* ArenaImpl::GetBlock(size_t n) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:218:51: error: no ‘void* google::protobuf::internal::ArenaImpl::AllocFromBlock(google::protobuf::internal::ArenaImpl::Block*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
void* ArenaImpl::AllocFromBlock(Block* b, size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:218:33: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context void* ArenaImpl::AllocFromBlock(Block* b, size_t n) {
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:231:51: error: no ‘google::protobuf::internal::ArenaImpl::Block* google::protobuf::internal::ArenaImpl::GetBlockSlow(void*, google::protobuf::internal::ArenaImpl::Block*, size_t)’ member function declared in class ‘google::protobuf::internal::ArenaImpl’
size_t n) {
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:230:12: error: ‘class google::protobuf::internal::ArenaImpl::Block’ is private within this context ArenaImpl::Block* ArenaImpl::GetBlockSlow(void* me, Block* my_full_block,
^~~~~
In file included from /opt/conda/include/google/protobuf/arena.h:51:0,
from /home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:31:
/opt/conda/include/google/protobuf/arena_impl.h:215:28: note: declared private here
class LIBPROTOBUF_EXPORT Block {
^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::SpaceAllocated() const’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:248:38: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
return google::protobuf::internal::NoBarrier_Load(&space_allocated_);
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::SpaceUsed() const’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:3: note: suggested alternative: ‘threads_’
ThreadInfo* info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:252:15: note: suggested alternative: ‘int8’
ThreadInfo* info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:24: error: ‘ThreadInfo’ does not name a type; did you mean ‘ThreadCache’?
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:34: error: expected ‘(’ before ‘*’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:65: error: ‘Acquire_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:253:89: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::Acquire_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:259:43: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from type ‘google::protobuf::internal::ArenaImpl::Block* (google::protobuf::internal::ArenaImpl::Block::)() const’ to type ‘google::protobuf::internal::ArenaImpl::Block*’
for (Block* b = info->head; b; b = b->next) {
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:260:31: error: ‘kHeaderSize’ was not declared in this scope
space_used += (b->pos - kHeaderSize);
^~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:260:31: note: suggested alternative: ‘kBlockHeaderSize’
space_used += (b->pos - kHeaderSize);
^~~~~~~~~~~
kBlockHeaderSize
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘google::protobuf::uint64 google::protobuf::internal::ArenaImpl::FreeBlocks()’:/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:3: note: suggested alternative: ‘threads_’
ThreadInfo* info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:271:15: note: suggested alternative: ‘int8’
ThreadInfo* info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:24: error: ‘ThreadInfo’ does not name a type; did you mean ‘ThreadCache’?
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:34: error: expected ‘(’ before ‘*’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:65: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:272:91: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:276:17: error: ‘next_info’ was not declared in this scope
ThreadInfo* next_info = info->next;
^~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:279:30: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::next’ from type ‘google::protobuf::internal::ArenaImpl::Block* (google::protobuf::internal::ArenaImpl::Block::)() const’ to type ‘google::protobuf::internal::ArenaImpl::Block*’
Block* next_block = b->next;
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:280:30: error: invalid use of member function ‘size_t google::protobuf::internal::ArenaImpl::Block::size() const’ (did you forget the ‘()’ ?)
space_allocated += (b->size);
~~~~^~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:280:34: error: in evaluation of ‘operator+=(google::protobuf::uint64 {aka long unsigned int}, <unresolved overloaded function type>)’
space_allocated += (b->size);
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:289:42: error: cannot convert ‘google::protobuf::internal::ArenaImpl::Block::size’ from type ‘size_t (google::protobuf::internal::ArenaImpl::Block::)() const {aka long unsigned int (google::protobuf::internal::ArenaImpl::Block::)() const}’ to type ‘size_t {aka long unsigned int}’
options_.block_dealloc(b, b->size);
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: In member function ‘void google::protobuf::internal::ArenaImpl::CleanupList()’:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:3: error: ‘ThreadInfo’ was not declared in this scope
ThreadInfo* info =
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:3: note: suggested alternative: ‘threads_’
ThreadInfo* info =
^~~~~~~~~~
threads_
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:15: error: ‘info’ was not declared in this scope
ThreadInfo* info =
^~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:303:15: note: suggested alternative: ‘int8’
ThreadInfo* info =
^~~~
int8
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:24: error: ‘ThreadInfo’ does not name a type; did you mean ‘ThreadCache’?
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~
ThreadCache
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘>’ before ‘*’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:34: error: expected ‘(’ before ‘*’ token
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:35: error: expected primary-expression before ‘>’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:65: error: ‘NoBarrier_Load’ is not a member of ‘google::protobuf::internal’
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^~~~~~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:304:91: error: expected ‘)’ before ‘;’ token
reinterpret_cast<ThreadInfo*>(google::protobuf::internal::NoBarrier_Load(&threads_));
^
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:309:24: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
size_t n = list->len;
^~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:310:46: error: ‘struct google::protobuf::internal::ArenaImpl::CleanupChunk’ has no member named ‘len’
CleanupNode* node = &list->nodes[list->len - 1];
^~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc: At global scope:
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:319:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::NewThreadInfo(Block* b) {
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:330:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::FindThreadInfo(void* me) {
^~~~~~~~~~
/home/jovyan/opencv-4.0.0/3rdparty/protobuf/src/google/protobuf/arena.cc:342:12: error: ‘ThreadInfo’ in ‘class google::protobuf::internal::ArenaImpl’ does not name a type
ArenaImpl::ThreadInfo* ArenaImpl::GetThreadInfo(void* me, size_t n) {
^~~~~~~~~~
3rdparty/protobuf/CMakeFiles/libprotobuf.dir/build.make:62: recipe for target '3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o' failed
make[2]: *** [3rdparty/protobuf/CMakeFiles/libprotobuf.dir/src/google/protobuf/arena.cc.o] Error 1
CMakeFiles/Makefile2:509: recipe for target '3rdparty/protobuf/CMakeFiles/libprotobuf.dir/all' failed
make[1]: *** [3rdparty/protobuf/CMakeFiles/libprotobuf.dir/all] Error 2
Makefile:162: recipe for target 'all' failed
make: *** [all] Error 2
##### Steps to reproduce
run jupyter/datascience-notebook:14fdfbf9cfc1 with `docker run --rm -it -u
root jupyter/datascience-notebook:14fdfbf9cfc1 /bin/bash`
Enter following commands:
apt-get update && \
apt-get install -y \
build-essential \
cmake \
git \
wget \
unzip \
yasm \
pkg-config \
libswscale-dev \
libtbb2 \
libtbb-dev \
libjpeg-dev \
libpng-dev \
libtiff-dev \
libavformat-dev \
libpq-dev
OPENCV_VERSION=4.0.0
wget -O opencv.zip https://github.com/opencv/opencv/archive/${OPENCV_VERSION}.zip \
&& unzip opencv.zip \
&& mkdir opencv-${OPENCV_VERSION}/cmake_binary \
&& cd opencv-${OPENCV_VERSION}/cmake_binary
cmake \
-D CMAKE_BUILD_TYPE=RELEASE \
-D CMAKE_INSTALL_PREFIX=/usr/local \
-D INSTALL_PYTHON_EXAMPLES=ON \
-D INSTALL_C_EXAMPLES=OFF \
-D BUILD_EXAMPLES=ON \
-D PYTHON_EXECUTABLE=$(which python) \
-D PYTHON_INCLUDE_DIR=$(python -c "from distutils.sysconfig import get_python_inc; print(get_python_inc())") \
-D PYTHON_PACKAGES_PATH=$(python -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())") \
-D CMAKE_INSTALL_PREFIX=$(python -c "import sys; print(sys.prefix)") \
..
make install
Thank you for the support
Regards
| 1 |
Having animated route transitions would be nice, as this is one of the many
benefits through client-side routing. Doing so should be left up to the user
in my opinion (some people prefer CSS transitions over more fine-grained
control with `react-motion` etc). As I understand it, one would need to modify
the top-level App component.
The client entry file seems to look for a globally assigned
`__NEXT_DATA__.app` variable but I can't find any documentation on that.
|
I noticed that one React root is used, while this is certainly the simplest
solution, I'm curious if there's a plan to support or use multiple React
roots?
In the current architecture with a single root, a client-side navigation blows
away everything visible on the page and re-renders everything for the new
route, including parts of the component tree that exist on both routes.
With multiple React roots, common site elements like a `<header>` could be in
their own React root, and when the same page "region" exists between two
routes the component tree won't need to be torn down and re-rendered during
that client-side navigation. An architecture with multiple roots/regions would
also allow the server to flush out to the response before waiting for the
entire page to be rendered.
I imagine that when using Next, it'll be natural to break out common page-
level UI component trees, like the site's header, and reuse it on all pages,
similar to an "include", and at these page "region" boundaries there's an
opportunity to use multiple React roots to speed up both server and client
rendering.
So I'm mainly curious if this sort of thing might be part of Next in the
future, or if the simplicity of one React root and re-rendering the entire
page on client-side navigation is an explicit design decision for the
framework?
| 1 |
Some of the plot titles / legends seem to overrun the margins of the plots and
get cut off.
See the narrative documentation here http://scikit-
learn.org/dev/modules/gaussian_process.html for a start
|
The plot in http://scikit-
learn.org/dev/auto_examples/gaussian_process/plot_compare_gpr_krr.html
doesn't look good on the website (and is referred to in the user guide).
The legend is not really readable. Needs some tweaking with the legend
position.
| 1 |
From @water4u99 on 2016-11-18T22:28:43Z
##### ISSUE TYPE
* Bug Report
##### COMPONENT NAME
template
##### ANSIBLE VERSION
2.0 and higher
##### CONFIGURATION
[ssh_connection]
control_path = %(directory)s/%%C
##### OS / ENVIRONMENT
Mac OS X 10.11.6
Centos 6.x, 7.x
##### SUMMARY
In the input .j2 file, we substitute a variable with an environment variable
that has a line/string that contains a grok expression containing "(?m)\n" .
The output generated by the template module in versions 2.0 and later, treats
the \n as actual line break. Where as versions up to 1.9.6 retains the literal
"(?m)\n" without replacing the \n with an actual line break. We see the line
break after we upgraded the Ansible version to 2.x.
Any way we can work around this issue? Thank you for your help.
##### STEPS TO REPRODUCE
Our execution flow is probably not the nicest - we want to reengineer it soon.
Basic steps:
1. Run a shell script with ansible-playbook command that pass in an env variable with (?m)\n literal.
2. Playbook calls a main yaml file and assigns shell environment var to a included task yaml file.
3. The task yaml file invokes the template module.
In the snippet below I stripped out other lines/vars for clarity.
main shell
set GROK_PATTERN_GENERAL_ERROR_PG="%{TIMESTAMP_ISO8601} ERROR \[%{USER:handlerName}\] %{USER:className}%{GREEDYDATA:errorline1}((?m)\n%{USER:logerror}%{GREEDYDATA})"
ansible-playbook -i ../common/host.inventory \
-${VERBOSE} \
t.yml \
${CHECK_ONLY} \
--extra-vars "hosts='${HOST}'
xlogstash_grok_general_error='${GROK_PATTERN_GENERAL_ERROR_PG}'
"
t.yml
---
- hosts: 127.0.0.1
connection: local
tasks:
- include_vars: ../common/defaults/main.yml
- name: generate logstash kafka logscan filter config file
include: tasks/t.yml
vars:
logstash_grok_general_error: "{{xlogstash_grok_general_error}}"
tasks/t.yml
---
- name: generate logstash kafka logscan filter config file
template: src=../common/templates/my.conf.j2
dest="./500-filter.conf"
my.conf.j2
grok {
break_on_match => "true"
match => [
"message", "{{logstash_grok_general_error}}"
]
}
Note the (?m)\n are still on the same line.
##### EXPECTED RESULTS
grok {
break_on_match => "true"
match => [
"message", "%{TIMESTAMP_ISO8601} ERROR \[%{USER:handlerName}\] %{USER:className}%{GREEDYDATA:errorline1}((?m)\n%{USER:logerror}%{GREEDYDATA})"
]
}
##### ACTUAL RESULTS
Note (?m)\n now has the \n as actual line break.
grok {
break_on_match => "true"
match => [
"message", "%{TIMESTAMP_ISO8601} ERROR \[%{USER:handlerName}\] %{USER:className}%{GREEDYDATA:errorline1}((?m)
%{USER:logerror}%{GREEDYDATA})"
]
}
Copied from original issue: ansible/ansible-modules-core#5674
|
##### ISSUE TYPE
Bug Report
##### COMPONENT NAME
template
##### ANSIBLE VERSION
2.0 and higher
CONFIGURATION
[ssh_connection]
control_path = %(directory)s/%%C
##### OS / ENVIRONMENT
Mac OS X 10.11.6
Centos 6.x, 7.x
SUMMARY
In the input .j2 file, we substitute a variable with an environment variable
that has a line/string that contains a grok expression containing `(?m)\n` .
The output generated by the template module in versions 2.0 and later, treats
the \n as actual line break. Where as versions up to 1.9.6 retains the literal
`(?m)\n` without replacing the \n with an actual line break. We see the line
break after we upgraded the Ansible version to 2.x.
Any way we can work around this issue? Thank you for your help.
##### STEPS TO REPRODUCE
Our execution flow is probably not the nicest - we want to reengineer it soon.
Basic steps:
Run a shell script with ansible-playbook command that pass in an env variable with `(?m)\n` literal.
Playbook calls a main yaml file and assigns shell environment var to a included task yaml file.
The task yaml file invokes the template module.
In the snippet below I stripped out other lines/vars for clarity.
main shell
set GROK_PATTERN_GENERAL_ERROR_PG="%{TIMESTAMP_ISO8601} ERROR \[%{USER:handlerName}\] %{USER:className}%{GREEDYDATA:errorline1}((?m)\n%{USER:logerror}%{GREEDYDATA})"
ansible-playbook -i ../common/host.inventory \
-${VERBOSE} \
t.yml \
${CHECK_ONLY} \
--extra-vars "hosts='${HOST}'
xlogstash_grok_general_error='${GROK_PATTERN_GENERAL_ERROR_PG}'
"
t.yml
---
- hosts: 127.0.0.1
connection: local
tasks:
- include_vars: ../common/defaults/main.yml
- name: generate logstash kafka logscan filter config file
include: tasks/t.yml
vars:
logstash_grok_general_error: "{{xlogstash_grok_general_error}}"
tasks/t.yml
---
- name: generate logstash kafka logscan filter config file
template: src=../common/templates/my.conf.j2
dest="./500-filter.conf"
my.conf.j2
grok {
break_on_match => "true"
match => [
"message", "{{logstash_grok_general_error}}"
]
}
Note the `(?m)\n` are still on the same line.
##### EXPECTED RESULTS
grok {
break_on_match => "true"
match => [
"message", "%{TIMESTAMP_ISO8601} ERROR \[%{USER:handlerName}\] %{USER:className}%{GREEDYDATA:errorline1}((?m)\n%{USER:logerror}%{GREEDYDATA})"
]
}
##### ACTUAL RESULTS
Note `(?m)\n` now has the `\n` as actual line break.
grok {
break_on_match => "true"
match => [
"message", "%{TIMESTAMP_ISO8601} ERROR \[%{USER:handlerName}\] %{USER:className}%{GREEDYDATA:errorline1}((?m)
%{USER:logerror}%{GREEDYDATA})"
]
}
| 1 |
### Apache Airflow version
2.3.0 (latest released)
### What happened
Soft link and folder under same root folder will be handled as the same
relative path. Say i have dags folder which looks like this:
-dags:
-- .airflowignore
-- folder
-- soft-links-to-folder -> folder
and .airflowignore:
folder/
both folder and soft-links-to-folder will be ignored.
### What you think should happen instead
Only the folder should be ignored. This is the expected behavior in airflow
2.2.4, before i upgraded. ~~The root cause is that both _RegexpIgnoreRule and
_GlobIgnoreRule is calling`relative_to` method to get search path.~~
### How to reproduce
check @tirkarthi comment for the test case.
### Operating System
ubuntu
### Versions of Apache Airflow Providers
_No response_
### Deployment
Official Apache Airflow Helm Chart
### Deployment details
_No response_
### Anything else
_No response_
### Are you willing to submit PR?
* Yes I am willing to submit a PR!
### Code of Conduct
* I agree to follow this project's Code of Conduct
|
### Apache Airflow version
main (development)
### What happened
The common sql `fetch_all_handler` modified by #19313 uses
`cursor.returns_rows` which is not dbapi2 compliant but sqlalchemy specific.
The `DBApiHook.run` method does not use `sqlalchemy` since it uses `get_conn`
and most (if not all) drivers cursors do not have the `returns_rows` attribute
(ex: `pymssql` and `jaydebeapi` do not have it: see below).
Why did the tests in https://github.com/apache/airflow/actions/runs/2712108854
passed:
* the jdbc's operator test assert that the run method is called with `fetch_all_handler` which is not tested.
* the databricks's hook test cursor mock has the `returns_rows` attribute.
* in all tests, the mock used will make `hasattr(cursor, "returns_rows")` resolves to `True` which is why tests passed
`jaydebeapi`'s cursor attributes:
>>> dir(cur)
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', '_close_last', '_connection', '_converters', '_description', '_meta', '_prep', '_rs', '_set_stmt_parms', 'arraysize', 'close', 'description', 'execute', 'executemany', 'fetchall', 'fetchmany', 'fetchone', 'rowcount', 'setinputsizes', 'setoutputsize']
`pymssql`'s cursor attributes:
>>> dir(cur)
['__class__', '__delattr__', '__dir__', '__doc__', '__enter__', '__eq__', '__exit__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__lt__', '__ne__', '__new__', '__next__', '__pyx_vtable__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__setstate__', '__sizeof__', '__str__', '__subclasshook__', '_source', 'callproc', 'close', 'connection', 'description', 'execute', 'executemany', 'fetchall', 'fetchmany', 'fetchone', 'lastrowid', 'nextset', 'returnvalue', 'rowcount', 'rownumber', 'setinputsizes', 'setoutputsize']
### What you think should happen instead
For the `fetch_all_handler` common handler we should be using
`cursor.description is not None` instead.
#25412 also suggested a rollback so we should take this into account.
Ref: https://peps.python.org/pep-0249/#description
### How to reproduce
### Import a sql hook (any sql hook inheriting `DbApiHook.run` should do):
>>> from airflow.providers.microsoft.mssql.hooks.mssql import MsSqlHook
>>> hk = MsSqlHook("localhost-mssql-docker-test")
>>> hk.run("SELECT SUSER_SNAME();", handler=lambda c: c.fetchall())
[('sa',)]
### Import the new `fetch_all_handler` and get an error
>>> from airflow.providers.common.sql.hooks.sql import fetch_all_handler
>>> hk.run("SELECT SUSER_SNAME();", handler=fetch_all_handler)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/home/gebo/.virtualenvs/airflow2.1/lib/python3.6/site-packages/airflow/hooks/dbapi.py", line 207, in run
result = handler(cur)
File "<stdin>", line 2, in fetch_all_handler
AttributeError: 'pymssql._pymssql.Cursor' object has no attribute 'returns_rows'
### Operating System
Ubuntu 20.04
### Versions of Apache Airflow Providers
_No response_
### Deployment
Official Apache Airflow Helm Chart
### Deployment details
_No response_
### Anything else
The new version would look like:
def fetch_all_handler(cursor) -> Optional[List[Tuple]]:
"""Handler for DbApiHook.run() to return results"""
# dbapi2 compliant way to check for cursor results:
if cursor.description is not None:
return cursor.fetchall()
else:
return None
### Are you willing to submit PR?
* Yes I am willing to submit a PR!
### Code of Conduct
* I agree to follow this project's Code of Conduct
| 0 |
Running the simple iOS example provided by this repository will crash if I
target any iPhone 4s/iPhone 5 **simulator**. The app will crash immediately at
launch, before entering `didFinishLaunchingWithOptions`. The last call I can
identify in the debugger is usually
`tensorflow::internal::LogMessageFatal::~LogMessageFatal:`.
The crashes happen on iPhone 5 simulators running iOS 10.2, 9.3, and 9.1. And
on iPhone 4s simulators running iOS 9.3, 9.1, and 8.4.
I can reproduce this behavior with other TensorFlow iOS apps.
The same apps that crash in an iPhone 4s/iPhone 5 simulator, will build & run
fine on other simulators & devices, _e.g._ on iPad Air simulator running 10.2,
a physical iPad Air running 10.2, or physical iPhone 6s Plus running 10.2.
Tests on a device farm including iPhone 4s & iPhone 5 devices were
inconclusive… I’m seeing a very similar crash happen, mostly affecting devices
running 9.3.5, but the devices/iOS combos that fail on physical devices are
slightly inconsistent from run to run (in the simulator the same devices crash
100% of the time no matter what OS I use, and from run to run).
### What related GitHub issues or StackOverflow threads have you found by
searching the web for your problem?
This issue is the only hit I get, but seems unrelated.
### Environment info
* Operating System: macOS Sierra 10.12.13
* Commit hash: `b393fd7` (master as of this writing)
* Bazel Version:
Build label: 0.4.3-jdk7
Build target: bazel-out/local- fastbuild/bin/src/main/java/com/google/devtools/build/lib/bazel/BazelServer_deploy.jar
Build time: Thu Dec 22 12:31:38 2016 (1482409898)
Build timestamp: 1482409898
Build timestamp as int: 1482409898
### Minimal reproducible example
1. Prepare the simple iOS example provided by Tensorflow
$ git clone https://github.com/tensorflow/tensorflow.git
$ cd tensorflow
$ tensorflow/contrib/makefile/download_dependencies.sh
$ tensorflow/contrib/makefile/build_all_ios.sh
$ open tensorflow/contrib/ios_examples/simple/tf_ios_makefile_example.xcodeproj
2. Download the Inception graph per the instructions
3. Target the iPhone 5 simulator on iOS 10.2, and Run.
4. The app will crash before entering `didFinishLaunchingWithOptions`.
5. (If you target the iPad Air simulator on iOS 10.2, it will work.)
|
Have I written custom code: N/A
OS Platform and Distribution: cpe:/o:centos:centos:7
TensorFlow installed from: pip install
TensorFlow version: 1.10
Bazel version: N/A
CUDA/cuDNN version: Cuda 9.0
GPU model and memory: 1080 Ti, 11G
Exact command to reproduce: N/A
Mobile device: N/A
I checked the roadmap says the new feature:
Eager execution
Use DistributionStrategy to utilize multiple GPUs and multiple TPU cores.
Distributed training support (multi-machine).
Performance improvements.
Simpler export to a GraphDef/SavedModel.
I am wondering whether tf 2.0 will consider synchronizing batchnorm statistics
across multiple GPUs which is extremely helpful for segmentation and other
task.
Similar issue as Synchronized BatchNorm statistics across GPUs
| 0 |
## Steps to Reproduce
1. flutter channel
Flutter channels:
beta
dev
* master
2. flutter upgrade
3. flutter create test_app
4. flutter run -d
## Logs
[ +27 ms] executing: [/Users/Shareclarity/Developer/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +29 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/master
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] master
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git ls-remote --get-url origin
[ +13 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git log -n 1 --pretty=format:%H
[ +14 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] a0010d391c04a488999ec11bc36654751f70be3e
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git log -n 1 --pretty=format:%ar
[ +9 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 hours ago
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +77 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.10.0-64-ga0010d391
[ +426 ms] executing: /Users/shareclarity/Library/Android/sdk/platform-tools/adb devices -l
[ +8 ms] Exit code 0 from: /Users/shareclarity/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
emulator-5554 device product:sdk_gphone_x86 model:Android_SDK_built_for_x86 device:generic_x86 transport_id:1
[ +9 ms] executing: idevice_id -h
[ +63 ms] executing: which ideviceinstaller
[ +6 ms] Exit code 0 from: which ideviceinstaller
[ ] /usr/local/bin/ideviceinstaller
[ ] executing: which iproxy
[ +4 ms] Exit code 0 from: which iproxy
[ ] /usr/local/bin/iproxy
[ +3 ms] /usr/bin/xcrun simctl list --json devices
[+1402 ms] Launching lib/main.dart on iPhone XS Max in debug mode...
[ +10 ms] executing: /usr/bin/defaults read /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/Info CFBundleIdentifier
[ +55 ms] Exit code 0 from: /usr/bin/defaults read /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ +14 ms] Building Runner.app for EB99DFB4-9C87-445D-95DB-494EFB0A50E8.
[ +9 ms] executing: script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "EB99DFB4-9C87-445D-95DB-494EFB0A50E8"
[ +48 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "EB99DFB4-9C87-445D-95DB-494EFB0A50E8""
[ +187 ms] Skipping kernel compilation. Fingerprint match.
[ +260 ms] Building bundle
[ ] Writing asset files to build/flutter_assets
[ +155 ms] Wrote build/flutter_assets
[ +1 ms] executing: /usr/bin/xcrun simctl get_app_container EB99DFB4-9C87-445D-95DB-494EFB0A50E8 com.example.testApp
[ ] executing: /usr/bin/killall Runner
[ +300 ms] Using legacy Xcode build system.
[ +17 ms] executing: [/Users/shareclarity/Developer/flutter_project/test_app/ios/] /usr/bin/xcodebuild -list
[+1807 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +1 ms] Looking for YAML at 'pubspec.yaml'
[ ] No services specified in the manifest
[ ] Found 0 service definition(s).
[ +1 ms] Copying service frameworks to '/Users/shareclarity/Developer/flutter_project/test_app/ios/Frameworks'.
[ ] Creating service definitions manifest at '/Users/shareclarity/Developer/flutter_project/test_app/ios/ServiceDefinitions.json'
[ +29 ms] Starting Xcode build...
[ ] executing: [/Users/shareclarity/Developer/flutter_project/test_app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios -sdk iphonesimulator -arch x86_64
[+3152 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
Prepare build
note: Using legacy build system
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
PhaseScriptExecution Run\ Script /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=shareclarity
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios
export BUILD_ROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/gt/2mrztx5x7l78lmqdlw4cny680000gp/C/com.apple.DeveloperTools/10.0-10A255/Xcode
export CCHROOT=/var/folders/gt/2mrztx5x7l78lmqdlw4cny680000gp/C/com.apple.DeveloperTools/10.0-10A255/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.0
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0"
export DERIVED_FILES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_DESTINATION=__entitlements
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/shareclarity/Developer/flutter_project/test_app
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_BUILD_NAME=1.0.0
export FLUTTER_BUILD_NUMBER=1
export FLUTTER_FRAMEWORK_DIR=/Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/Shareclarity/Developer/flutter
export FLUTTER_TARGET=/Users/shareclarity/Developer/flutter_project/test_app/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/shareclarity
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=shareclarity
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=18A391
export MAC_OS_X_VERSION_ACTUAL=101400
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1400
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:/Users/shareclarity/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.testApp
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/shareclarity/Developer/flutter_project/test_app/ios
export PROJECT_FILE_PATH=/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR_iphonesimulator12_0=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_NAME=iphonesimulator12.0
export SDK_NAMES=iphonesimulator12.0
export SDK_PRODUCT_BUILD_VERSION=16A366
export SDK_VERSION=12.0
export SDK_VERSION_ACTUAL=120000
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=000
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/shareclarity/Developer/flutter_project/test_app/ios
export SRCROOT=/Users/shareclarity/Developer/flutter_project/test_app/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=502
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=shareclarity
export USER_APPS_DIR=/Users/shareclarity/Applications
export USER_LIBRARY_DIR=/Users/shareclarity/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=shareclarity
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10A255
export XCODE_VERSION_ACTUAL=1000
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1000
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter
♦ rm -rf -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/App.framework
♦ rm -rf -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/Flutter.framework
♦ cp -r -- /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterChannels.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterPlugin.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterAppDelegate.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterNavigationController.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterTexture.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterHeadlessDartRunner.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterCodecs.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/Flutter.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterViewController.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterMacros.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterDartProject.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterBinaryMessenger.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterCallbackCache.h: Too many levels of symbolic links
♦ find /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/AppFrameworkInfo.plist /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/App.framework/Info.plist
♦ /Users/Shareclarity/Developer/flutter/bin/flutter --suppress-analytics --verbose build bundle --target-platform=ios --target=/Users/shareclarity/Developer/flutter_project/test_app/lib/main.dart --debug --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/flutter_assets
[ +8 ms] executing: [/Users/Shareclarity/Developer/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +36 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/master
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git rev-parse --abbrev-ref HEAD
[ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] master
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git ls-remote --get-url origin
[ +6 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git log -n 1 --pretty=format:%H
[ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] a0010d391c04a488999ec11bc36654751f70be3e
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git log -n 1 --pretty=format:%ar
[ +9 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 hours ago
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +33 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.10.0-64-ga0010d391
[ +658 ms] Skipping kernel compilation. Fingerprint match.
[ +207 ms] Building bundle
[ ] Writing asset files to /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/flutter_assets
[ +120 ms] Wrote /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/flutter_assets
[ +10 ms] "flutter bundle" took 871ms.
Project /Users/shareclarity/Developer/flutter_project/test_app built and packaged successfully.
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Index/DataStore -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator -F/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter -MMD -MT dependencies -MF /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/main.m -o /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/main.m:1:9: fatal error: 'Flutter/Flutter.h' file not found
#import <Flutter/Flutter.h>
^~~~~~~~~~~~~~~~~~~
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Index/DataStore -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator -F/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter -MMD -MT dependencies -MF /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/AppDelegate.m -o /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
In file included from /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/AppDelegate.m:1:
/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/AppDelegate.h:1:9: fatal error: 'Flutter/Flutter.h' file not found
#import <Flutter/Flutter.h>
^~~~~~~~~~~~~~~~~~~
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Index/DataStore -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator -F/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter -MMD -MT dependencies -MF /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/GeneratedPluginRegistrant.m -o /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
In file included from /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/GeneratedPluginRegistrant.m:5:
/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/GeneratedPluginRegistrant.h:8:9: fatal error: 'Flutter/Flutter.h' file not found
#import <Flutter/Flutter.h>
^~~~~~~~~~~~~~~~~~~
1 error generated.
2018-10-17 14:57:46.868 xcodebuild[46386:628951] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:46.868 xcodebuild[46386:628951] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:46.869 xcodebuild[46386:628951] iPhoneSupport: 📱<DVTiOSDevice (0x7faa1b3036b0), Laurence Wang’s iPhone, iPhone, 12.0.1 (16A404), a48665fd5a2ab4ca40a4d083bee59b55481bfefa> unable to mount DeveloperDiskImage (Error Domain=com.apple.dtdevicekit Code=601 "Could not find platform" UserInfo={NSLocalizedDescription=Could not find platform})
2018-10-17 14:57:46.975 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:46.986 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:47.101 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:47.105 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
** BUILD FAILED **
The following build commands failed:
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
[ +6 ms] Starting Xcode build... (completed)
[ +9 ms] Xcode build done. 3.2s
[ ] executing: [/Users/shareclarity/Developer/flutter_project/test_app/ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[+1059 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios -sdk iphonesimulator -arch x86_64 -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = staff
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = shareclarity
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios
BUILD_ROOT = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/gt/2mrztx5x7l78lmqdlw4cny680000gp/C/com.apple.DeveloperTools/10.0-10A255/Xcode
CCHROOT = /var/folders/gt/2mrztx5x7l78lmqdlw4cny680000gp/C/com.apple.DeveloperTools/10.0-10A255/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
CODE_SIGN_INJECT_BASE_ENTITLEMENTS = YES
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos12.0
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_PROJECT_VERSION = 1
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_LD_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_LD_FLAG_NAME = ios_simulator_version_min
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0
DERIVED_FILES_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_DESTINATION = __entitlements
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/shareclarity/Developer/flutter_project/test_app
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_BUILD_NAME = 1.0.0
FLUTTER_BUILD_NUMBER = 1
FLUTTER_FRAMEWORK_DIR = /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/Shareclarity/Developer/flutter
FLUTTER_TARGET = /Users/shareclarity/Developer/flutter_project/test_app/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 20
GROUP = staff
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/shareclarity
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = staff
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = shareclarity
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LLVM_TARGET_TRIPLE_SUFFIX = -simulator
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCALIZED_STRING_MACRO_NAMES = NSLocalizedString CFLocalizedString
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 18A391
MAC_OS_X_VERSION_ACTUAL = 101400
MAC_OS_X_VERSION_MAJOR = 101400
MAC_OS_X_VERSION_MINOR = 1400
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = com.example.testApp
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/shareclarity/Developer/flutter_project/test_app/ios
PROJECT_FILE_PATH = /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_DIR_iphonesimulator12_0 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
SDK_NAME = iphonesimulator12.0
SDK_NAMES = iphonesimulator12.0
SDK_PRODUCT_BUILD_VERSION = 16A366
SDK_VERSION = 12.0
SDK_VERSION_ACTUAL = 120000
SDK_VERSION_MAJOR = 120000
SDK_VERSION_MINOR = 000
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/shareclarity/Developer/flutter_project/test_app/ios
SRCROOT = /Users/shareclarity/Developer/flutter_project/test_app/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 502
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = shareclarity
USER_APPS_DIR = /Users/shareclarity/Applications
USER_LIBRARY_DIR = /Users/shareclarity/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONING_SYSTEM = apple-generic
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = shareclarity
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-1"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 10A255
XCODE_VERSION_ACTUAL = 1000
XCODE_VERSION_MAJOR = 1000
XCODE_VERSION_MINOR = 1000
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +6 ms] Failed to build iOS app
[ ] Error output from Xcode build:
↳
[ ] 2018-10-17 14:57:46.868 xcodebuild[46386:628951] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:46.868 xcodebuild[46386:628951] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:46.869 xcodebuild[46386:628951] iPhoneSupport: 📱<DVTiOSDevice (0x7faa1b3036b0), Laurence Wang’s iPhone, iPhone, 12.0.1 (16A404), a48665fd5a2ab4ca40a4d083bee59b55481bfefa> unable to mount DeveloperDiskImage (Error Domain=com.apple.dtdevicekit Code=601 "Could not find platform" UserInfo={NSLocalizedDescription=Could not find platform})
2018-10-17 14:57:46.975 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:46.986 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:47.101 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
2018-10-17 14:57:47.105 xcodebuild[46386:628871] [MT] DTDeviceKit: deviceType from 5901eb8230483960b54c666445e0c8337537ac96 was NULL
** BUILD FAILED **
The following build commands failed:
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)
[ ] Xcode's output:
↳
[ +3 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/shareclarity/Developer/flutter_project/test_app/build/ios
SDKROOT = iphonesimulator12.0
VERBOSE_SCRIPT_LOGGING = YES
Prepare build
note: Using legacy build system
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
PhaseScriptExecution Run\ Script /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=staff
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=shareclarity
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios
export BUILD_ROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/gt/2mrztx5x7l78lmqdlw4cny680000gp/C/com.apple.DeveloperTools/10.0-10A255/Xcode
export CCHROOT=/var/folders/gt/2mrztx5x7l78lmqdlw4cny680000gp/C/com.apple.DeveloperTools/10.0-10A255/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export CODE_SIGN_INJECT_BASE_ENTITLEMENTS=YES
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS12.0.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos12.0
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_PROJECT_VERSION=1
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_LD_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_LD_FLAG_NAME=ios_simulator_version_min
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2 11.3 11.4 12.0"
export DERIVED_FILES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_DESTINATION=__entitlements
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/shareclarity/Developer/flutter_project/test_app
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_BUILD_NAME=1.0.0
export FLUTTER_BUILD_NUMBER=1
export FLUTTER_FRAMEWORK_DIR=/Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/Shareclarity/Developer/flutter
export FLUTTER_TARGET=/Users/shareclarity/Developer/flutter_project/test_app/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 "
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=20
export GROUP=staff
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include "
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/shareclarity
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=staff
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=shareclarity
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LLVM_TARGET_TRIPLE_SUFFIX=-simulator
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCALIZED_STRING_MACRO_NAMES="NSLocalizedString CFLocalizedString"
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=18A391
export MAC_OS_X_VERSION_ACTUAL=101400
export MAC_OS_X_VERSION_MAJOR=101400
export MAC_OS_X_VERSION_MINOR=1400
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:/Users/shareclarity/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=com.example.testApp
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/shareclarity/Developer/flutter_project/test_app/ios
export PROJECT_FILE_PATH=/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_INPUT_FILE_LIST_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_LIST_COUNT=0
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_DIR_iphonesimulator12_0=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk
export SDK_NAME=iphonesimulator12.0
export SDK_NAMES=iphonesimulator12.0
export SDK_PRODUCT_BUILD_VERSION=16A366
export SDK_VERSION=12.0
export SDK_VERSION_ACTUAL=120000
export SDK_VERSION_MAJOR=120000
export SDK_VERSION_MINOR=000
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/shareclarity/Developer/flutter_project/test_app/ios
export SRCROOT=/Users/shareclarity/Developer/flutter_project/test_app/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=502
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=shareclarity
export USER_APPS_DIR=/Users/shareclarity/Applications
export USER_LIBRARY_DIR=/Users/shareclarity/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONING_SYSTEM=apple-generic
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=shareclarity
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-1\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=10A255
export XCODE_VERSION_ACTUAL=1000
export XCODE_VERSION_MAJOR=1000
export XCODE_VERSION_MINOR=1000
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter
♦ rm -rf -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/App.framework
♦ rm -rf -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/Flutter.framework
♦ cp -r -- /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterChannels.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterPlugin.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterAppDelegate.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterNavigationController.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterTexture.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterHeadlessDartRunner.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterCodecs.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/Flutter.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterViewController.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterMacros.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterDartProject.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterPluginAppLifeCycleDelegate.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterBinaryMessenger.h: Too many levels of symbolic links
cp: /Users/Shareclarity/Developer/flutter/bin/cache/artifacts/engine/ios/Flutter.framework/Headers/FlutterCallbackCache.h: Too many levels of symbolic links
♦ find /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/AppFrameworkInfo.plist /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/App.framework/Info.plist
♦ /Users/Shareclarity/Developer/flutter/bin/flutter --suppress-analytics --verbose build bundle --target-platform=ios --target=/Users/shareclarity/Developer/flutter_project/test_app/lib/main.dart --debug --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/flutter_assets
[ +8 ms] executing: [/Users/Shareclarity/Developer/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +36 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/master
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git rev-parse --abbrev-ref HEAD
[ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] master
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git ls-remote --get-url origin
[ +6 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git log -n 1 --pretty=format:%H
[ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] a0010d391c04a488999ec11bc36654751f70be3e
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git log -n 1 --pretty=format:%ar
[ +9 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 hours ago
[ ] executing: [/Users/Shareclarity/Developer/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +33 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.10.0-64-ga0010d391
[ +658 ms] Skipping kernel compilation. Fingerprint match.
[ +207 ms] Building bundle
[ ] Writing asset files to /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/flutter_assets
[ +120 ms] Wrote /Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter/flutter_assets
[ +10 ms] "flutter bundle" took 871ms.
Project /Users/shareclarity/Developer/flutter_project/test_app built and packaged successfully.
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o Runner/main.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Index/DataStore -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator -F/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter -MMD -MT dependencies -MF /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.d --serialize-diagnostics /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.dia -c /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/main.m -o /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/main.o
/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/main.m:1:9: fatal error: 'Flutter/Flutter.h' file not found
#import <Flutter/Flutter.h>
^~~~~~~~~~~~~~~~~~~
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Index/DataStore -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator -F/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter -MMD -MT dependencies -MF /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/AppDelegate.m -o /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
In file included from /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/AppDelegate.m:1:
/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/AppDelegate.h:1:9: fatal error: 'Flutter/Flutter.h' file not found
#import <Flutter/Flutter.h>
^~~~~~~~~~~~~~~~~~~
CompileC /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/shareclarity/Developer/flutter_project/test_app/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/Shareclarity/Developer/flutter/bin:/usr/local/sbin:/Users/shareclarity/.nvm/versions/node/v9.10.1/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/share/dotnet:/opt/X11/bin:~/.dotnet/tools:/Library/Frameworks/Mono.framework/Versions/Current/Commands"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/shareclarity/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Wno-objc-interface-ivars -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator12.0.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Index/DataStore -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator/include -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/shareclarity/Developer/flutter_project/test_app/build/ios/Debug-iphonesimulator -F/Users/shareclarity/Developer/flutter_project/test_app/ios/Flutter -MMD -MT dependencies -MF /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/GeneratedPluginRegistrant.m -o /Users/shareclarity/Library/Developer/Xcode/DerivedData/Runner-dwqazvqegcuikadhubvglsmwdhfn/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
In file included from /Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/GeneratedPluginRegistrant.m:5:
/Users/shareclarity/Developer/flutter_project/test_app/ios/Runner/GeneratedPluginRegistrant.h:8:9: fatal error: 'Flutter/Flutter.h' file not found
#import <Flutter/Flutter.h>
^~~~~~~~~~~~~~~~~~~
1 error generated.
[ +5 ms] "flutter run" took 9,047ms.
Analyzing test_app...
No issues found! (ran in 7.9s)
[✓] Flutter (Channel master, v0.10.1-pre.64, on Mac OS X 10.14 18A391, locale en-NZ)
• Flutter version 0.10.1-pre.64 at /Users/Shareclarity/Developer/flutter
• Framework revision a0010d391c (2 hours ago), 2018-10-17 00:54:26 +0100
• Engine revision 08272ee6aa
• Dart version 2.1.0-dev.7.1.flutter-b99bcfd309
[✓] Android toolchain - develop for Android devices (Android SDK 28.0.2)
• Android SDK at /Users/shareclarity/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-28, build-tools 28.0.2
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 10.0)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 10.0, Build version 10A255
• ios-deploy 2.0.0
• CocoaPods version 1.5.0
[✓] Android Studio (version 3.2)
• Android Studio at /Applications/Android Studio.app/Contents
✗ Flutter plugin not installed; this adds Flutter specific functionality.
✗ Dart plugin not installed; this adds Dart specific functionality.
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-1136-b06)
[✓] VS Code (version 1.28.1)
• VS Code at /Applications/Visual Studio Code.app/Contents
• Flutter extension version 2.19.0
[✓] Connected device (3 available)
• Android SDK built for x86 • emulator-5554 • android-x86 • Android 8.1.0 (API 27) (emulator)
• iPhone XS Max • EB99DFB4-9C87-445D-95DB-494EFB0A50E8 • ios • iOS 12.0 (simulator)
|
## Steps to Reproduce
This was only tested on the Simulator, not on the device itself.
1. Run the Flutter Gallery on iOS.
2. Scroll to Material Components -> Buttons (and tap on it)
3. In the new screen, in the top far right, tap on the "page/paper" icon.
4. Example code should be in a monospace font (and is on Android), but is not on iOS.
## Logs
$ flutter run --verbose
[ +70 ms] [/Users/efortuna/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +45 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/dev
[ ] [/Users/efortuna/flutter/] git rev-parse --abbrev-ref HEAD
[ +6 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] dev
[ ] [/Users/efortuna/flutter/] git ls-remote --get-url origin
[ +6 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/efortuna/flutter/] git log -n 1 --pretty=format:%H
[ +18 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 472bbccf756e7954af2a81d2c8abc46d65a570af
[ ] [/Users/efortuna/flutter/] git log -n 1 --pretty=format:%ar
[ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 weeks ago
[ ] [/Users/efortuna/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +62 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.6-0-g472bbccf7
[ +133 ms] /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ +61 ms] Exit code 0 from: /usr/bin/defaults read /Applications/Android Studio.app/Contents/Info CFBundleShortVersionString
[ ] 3.0
[ +138 ms] /Users/efortuna/Library/Android/sdk/platform-tools/adb devices -l
[ +15 ms] Exit code 0 from: /Users/efortuna/Library/Android/sdk/platform-tools/adb devices -l
[ ] List of devices attached
[ +5 ms] idevice_id -h
[ +264 ms] /usr/bin/xcrun simctl list --json devices
[ +257 ms] Found plugin connectivity at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/connectivity-0.3.1/
[ +11 ms] Found plugin device_info at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/device_info-0.2.1/
[ +82 ms] Found plugin url_launcher at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/url_launcher-3.0.2/
[ +3 ms] Found plugin video_player at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/video_player-0.6.1/
[+1100 ms] Launching lib/main.dart on iPhone X in debug mode...
[ +1 ms] /usr/bin/defaults read /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/Info CFBundleIdentifier
[ +56 ms] Exit code 0 from: /usr/bin/defaults read /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/Info CFBundleIdentifier
[ ] $(PRODUCT_BUNDLE_IDENTIFIER)
[ ] [ios/Runner.xcodeproj/] /usr/bin/xcodebuild -project /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner.xcodeproj -target Runner -showBuildSettings
[+1569 ms] Exit code 0 from: /usr/bin/xcodebuild -project /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner.xcodeproj -target Runner -showBuildSettings
[ ] Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = NO
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = efortuna
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = armv7 arm64
ARCHS_STANDARD = armv7 arm64
ARCHS_STANDARD_32_64_BIT = armv7 arm64
ARCHS_STANDARD_32_BIT = armv7
ARCHS_STANDARD_64_BIT = arm64
ARCHS_STANDARD_INCLUDING_64_BIT = armv7 arm64
ARCHS_UNIVERSAL_IPHONE_OS = armv7 arm64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
BUILD_ROOT = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos
CACHE_ROOT = /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
CCHROOT = /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneOSCodeSignContext
CODE_SIGN_IDENTITY = iPhone Developer
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Release
CONFIGURATION_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos
CONFIGURATION_TEMP_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_SIMULATOR_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
CORRESPONDING_SIMULATOR_PLATFORM_NAME = iphonesimulator
CORRESPONDING_SIMULATOR_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
CORRESPONDING_SIMULATOR_SDK_NAME = iphonesimulator11.2
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = arm64
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = miphoneos-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -miphoneos-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2
DERIVED_FILES_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos
EFFECTIVE_PLATFORM_NAME = -iphoneos
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBEDDED_PROFILE_NAME = embedded.mobileprovision
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_NS_ASSERTIONS = NO
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = NO
ENTITLEMENTS_ALLOWED = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/efortuna/flutter/examples/flutter_gallery
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/efortuna/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/efortuna/flutter
FLUTTER_TARGET = /Users/efortuna/flutter/examples/flutter_gallery/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios" /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = YES
GCC_THUMB_SUPPORT = YES
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/efortuna
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = efortuna
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KASAN_DEFAULT_CFLAGS = -DKASAN=1 -fsanitize=address -mllvm -asan-globals-live-support -mllvm -asan-force-dynamic-shadow
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal/arm64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/Runner-LinkMap-normal-arm64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/video_player" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/video_player" /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_arm64 =
LINK_FILE_LIST_normal_armv7 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17F77
MAC_OS_X_VERSION_ACTUAL = 101305
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1305
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/Runner.app
MODULE_CACHE_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache
MTL_ENABLE_DEBUG_INFO = NO
NATIVE_ARCH = armv7
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJECT_FILE_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/Objects-normal
OBJROOT = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
ONLY_ACTIVE_ARCH = NO
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
OTHER_LDFLAGS = -ObjC -l"Reachability" -l"connectivity" -l"device_info" -l"url_launcher" -l"video_player" -framework "Flutter" -framework "SystemConfiguration" -ObjC -l"Reachability" -l"connectivity" -l"device_info" -l"url_launcher" -l"video_player" -framework "Flutter" -framework "SystemConfiguration"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
PLATFORM_DISPLAY_NAME = iOS
PLATFORM_NAME = iphoneos
PLATFORM_PREFERRED_ARCH = arm64
PLATFORM_PRODUCT_BUILD_VERSION = 15C107
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos
PODS_PODFILE_DIR_PATH = /Users/efortuna/flutter/examples/flutter_gallery/ios/.
PODS_ROOT = /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = io.flutter.examples.gallery
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/DerivedSources
PROJECT_DIR = /Users/efortuna/flutter/examples/flutter_gallery/ios
PROJECT_FILE_PATH = /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build
PROJECT_TEMP_ROOT = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
PROVISIONING_PROFILE_REQUIRED = YES
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
RESOURCE_RULES_REQUIRED = YES
REZ_COLLECTOR_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk
SDK_DIR_iphoneos11_2 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk
SDK_NAME = iphoneos11.2
SDK_NAMES = iphoneos11.2
SDK_PRODUCT_BUILD_VERSION = 15C107
SDK_VERSION = 11.2
SDK_VERSION_ACTUAL = 110200
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 200
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/SharedPrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/efortuna/flutter/examples/flutter_gallery/ios
SRCROOT = /Users/efortuna/flutter/examples/flutter_gallery/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = YES
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Release-iphoneos
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILES_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_FILE_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Runner.build/Release-iphoneos/Runner.build
TEMP_ROOT = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 113079
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = efortuna
USER_APPS_DIR = /Users/efortuna/Applications
USER_LIBRARY_DIR = /Users/efortuna/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = YES
VALID_ARCHS = arm64 armv7 armv7s
VERBOSE_PBXCP = NO
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = efortuna
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9C40b
XCODE_VERSION_ACTUAL = 0920
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0920
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = arm64
variant = normal
[ +19 ms] Building Runner.app for DB25ADD2-E839-479A-8375-B1009FD4A6AF.
[ +10 ms] script /dev/null /usr/bin/log stream --style syslog --predicate processImagePath CONTAINS "DB25ADD2-E839-479A-8375-B1009FD4A6AF"
[ +46 ms] [DEVICE LOG] Filtering the log data using "processImagePath CONTAINS "DB25ADD2-E839-479A-8375-B1009FD4A6AF""
[ +5 ms] [DEVICE LOG] Timestamp (process)[PID]
[ +265 ms] Skipping kernel compilation. Fingerprint match.
[ +511 ms] Building bundle
[ +1 ms] Writing asset files to build/flutter_assets
[ +475 ms] Wrote build/flutter_assets
[ +3 ms] /usr/bin/xcrun simctl get_app_container DB25ADD2-E839-479A-8375-B1009FD4A6AF io.flutter.examples.gallery
[ +1 ms] /usr/bin/killall Runner
[ +161 ms] python -c import six
[ +79 ms] [ios/] /usr/bin/xcodebuild -list
[ +878 ms] Exit code 0 from: /usr/bin/xcodebuild -list
[ ] Information about project "Runner":
Targets:
Runner
Build Configurations:
Debug
Release
If no build configuration is specified and -scheme is not passed then "Release" is used.
Schemes:
Runner
[ +2 ms] Trying to resolve native pub services.
[ +2 ms] Looking for YAML at 'pubspec.yaml'
[ +2 ms] No services specified in the manifest
[ ] Found 0 service definition(s).
[ +1 ms] Copying service frameworks to '/Users/efortuna/flutter/examples/flutter_gallery/ios/Frameworks'.
[ ] Creating service definitions manifest at 'ios/ServiceDefinitions.json'
[ +18 ms] pod --version
[ +586 ms] 1.5.3
[ +5 ms] mkfifo /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
[ +17 ms] Exit code 0 from: mkfifo /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
[ +1 ms] Starting Xcode build...
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
[+2007 ms] ├─Assembling Flutter resources...
[+2497 ms] └─Compiling, linking and signing...
[+4574 ms] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
SDKROOT = iphonesimulator11.2
VERBOSE_SCRIPT_LOGGING = YES
=== BUILD TARGET device_info OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET url_launcher OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET video_player OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET Reachability OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET connectivity OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET Pods-Runner OF PROJECT Pods WITH CONFIGURATION Debug ===
Check dependencies
=== BUILD TARGET Runner OF PROJECT Runner WITH CONFIGURATION Debug ===
Check dependencies
PhaseScriptExecution [CP]\ Check\ Pods\ Manifest.lock /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-91D60C3C5625D9810FC8B9A8.sh
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
/bin/sh -c /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-91D60C3C5625D9810FC8B9A8.sh
PhaseScriptExecution Run\ Script /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=efortuna
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios
export BUILD_ROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
export CCHROOT=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.2
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2"
export DERIVED_FILES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/efortuna/flutter/examples/flutter_gallery
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/efortuna/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/efortuna/flutter
export FLUTTER_TARGET=/Users/efortuna/flutter/examples/flutter_gallery/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1 COCOAPODS=1"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/include /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/efortuna
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=efortuna
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Reachability /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/connectivity /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/device_info /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/url_launcher /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/video_player /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17F77
export MAC_OS_X_VERSION_ACTUAL=101305
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1305
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export OTHER_CFLAGS=" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\""
export OTHER_CPLUSPLUSFLAGS=" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\""
export OTHER_LDFLAGS=" -ObjC -l\"Reachability\" -l\"connectivity\" -l\"device_info\" -l\"url_launcher\" -l\"video_player\" -framework \"Flutter\" -framework \"SystemConfiguration\" -ObjC -l\"Reachability\" -l\"connectivity\" -l\"device_info\" -l\"url_launcher\" -l\"video_player\" -framework \"Flutter\" -framework \"SystemConfiguration\""
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PODS_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios
export PODS_CONFIGURATION_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export PODS_PODFILE_DIR_PATH=/Users/efortuna/flutter/examples/flutter_gallery/ios/.
export PODS_ROOT=/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=io.flutter.examples.gallery
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/efortuna/flutter/examples/flutter_gallery/ios
export PROJECT_FILE_PATH=/Users/efortuna/flutter/examples/flutter_gallery/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
export SDK_DIR_iphonesimulator11_2=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
export SDK_NAME=iphonesimulator11.2
export SDK_NAMES=iphonesimulator11.2
export SDK_PRODUCT_BUILD_VERSION=15C107
export SDK_VERSION=11.2
export SDK_VERSION_ACTUAL=110200
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=200
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/efortuna/flutter/examples/flutter_gallery/ios
export SRCROOT=/Users/efortuna/flutter/examples/flutter_gallery/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=113079
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=efortuna
export USER_APPS_DIR=/Users/efortuna/Applications
export USER_LIBRARY_DIR=/Users/efortuna/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=efortuna
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9C40b
export XCODE_VERSION_ACTUAL=0920
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0920
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9740EEB61CF901F6004384FC.sh
♦ mkdir -p -- /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter
♦ rm -rf -- /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/Flutter.framework
♦ rm -rf -- /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/App.framework
♦ cp -r -- /Users/efortuna/flutter/bin/cache/artifacts/engine/ios/Flutter.framework /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter
♦ find /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/Flutter.framework -type f -exec chmod a-w {} ;
♦ mkdir -p -- /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/App.framework
♦ eval
♦ cp -- /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/AppFrameworkInfo.plist /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/App.framework/Info.plist
♦ /Users/efortuna/flutter/bin/flutter --suppress-analytics --verbose build bundle --target-platform=ios --target=/Users/efortuna/flutter/examples/flutter_gallery/lib/main.dart --snapshot=build/snapshot_blob.bin --debug --depfile=build/snapshot_blob.bin.d --asset-dir=/Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/flutter_assets --preview-dart-2
[ +8 ms] [/Users/efortuna/flutter/] git rev-parse --abbrev-ref --symbolic @{u}
[ +46 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[ ] origin/dev
[ ] [/Users/efortuna/flutter/] git rev-parse --abbrev-ref HEAD
[ +7 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[ ] dev
[ ] [/Users/efortuna/flutter/] git ls-remote --get-url origin
[ +8 ms] Exit code 0 from: git ls-remote --get-url origin
[ ] https://github.com/flutter/flutter.git
[ ] [/Users/efortuna/flutter/] git log -n 1 --pretty=format:%H
[ +10 ms] Exit code 0 from: git log -n 1 --pretty=format:%H
[ ] 472bbccf756e7954af2a81d2c8abc46d65a570af
[ ] [/Users/efortuna/flutter/] git log -n 1 --pretty=format:%ar
[ +7 ms] Exit code 0 from: git log -n 1 --pretty=format:%ar
[ ] 2 weeks ago
[ +1 ms] [/Users/efortuna/flutter/] git describe --match v*.*.* --first-parent --long --tags
[ +48 ms] Exit code 0 from: git describe --match v*.*.* --first-parent --long --tags
[ ] v0.5.6-0-g472bbccf7
[ +320 ms] Found plugin connectivity at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/connectivity-0.3.1/
[ +7 ms] Found plugin device_info at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/device_info-0.2.1/
[ +61 ms] Found plugin url_launcher at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/url_launcher-3.0.2/
[ +2 ms] Found plugin video_player at /Users/efortuna/.pub-cache/hosted/pub.dartlang.org/video_player-0.6.1/
[ +550 ms] Skipping kernel compilation. Fingerprint match.
[ +495 ms] Building bundle
[ ] Writing asset files to /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/flutter_assets
[ +460 ms] Wrote /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/flutter_assets
[ +8 ms] "flutter bundle" took 1,755ms.
Project /Users/efortuna/flutter/examples/flutter_gallery built and packaged successfully.
CompileC /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o Runner/AppDelegate.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Index/DataStore -iquote /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/include -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator -F/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios -F/Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player -MMD -MT dependencies -MF /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.d --serialize-diagnostics /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.dia -c /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/AppDelegate.m -o /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/AppDelegate.o
CompileC /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o Runner/GeneratedPluginRegistrant.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export LANG=en_US.US-ASCII
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -arch x86_64 -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu99 -fobjc-arc -fmodules -gmodules -fmodules-cache-path=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror=non-modular-include-in-framework-module -Wno-trigraphs -fpascal-strings -O0 -fno-common -Wno-missing-field-initializers -Wno-missing-prototypes -Werror=return-type -Wunreachable-code -Wno-implicit-atomic-properties -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-arc-repeated-use-of-weak -Wduplicate-method-match -Wno-missing-braces -Wparentheses -Wswitch -Wunused-function -Wno-unused-label -Wno-unused-parameter -Wunused-variable -Wunused-value -Wempty-body -Wuninitialized -Wconditional-uninitialized -Wno-unknown-pragmas -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wconstant-conversion -Wint-conversion -Wbool-conversion -Wenum-conversion -Wno-float-conversion -Wnon-literal-null-conversion -Wobjc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wundeclared-selector -Wno-deprecated-implementations -DDEBUG=1 -DCOCOAPODS=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -mios-simulator-version-min=8.0 -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Index/DataStore -iquote /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-generated-files.hmap -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-own-target-headers.hmap -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-all-target-headers.hmap -iquote /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-project-headers.hmap -I/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/include -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher -I/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources/x86_64 -I/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources -F/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator -F/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios -F/Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher -isystem /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player -MMD -MT dependencies -MF /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.d --serialize-diagnostics /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.dia -c /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/GeneratedPluginRegistrant.m -o /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/GeneratedPluginRegistrant.o
Ld /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Runner normal x86_64
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch x86_64 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk -L/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator -L/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Reachability -L/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/connectivity -L/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/device_info -L/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/url_launcher -L/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/video_player -L/Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter -F/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator -F/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios -F/Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter -filelist /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @executable_path/Frameworks -mios-simulator-version-min=8.0 -dead_strip -Xlinker -object_path_lto -Xlinker /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -objc_abi_version -Xlinker 2 -fobjc-arc -fobjc-link-runtime -ObjC -lReachability -lconnectivity -ldevice_info -lurl_launcher -lvideo_player -framework Flutter -framework SystemConfiguration -ObjC -lReachability -lconnectivity -ldevice_info -lurl_launcher -lvideo_player -framework Flutter -framework SystemConfiguration -Xlinker -sectcreate -Xlinker __TEXT -Xlinker __entitlements -Xlinker /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner.app.xcent -framework Flutter -framework App -lPods-Runner -Xlinker -dependency_info -Xlinker /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat -o /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Runner
CpResource Flutter/Generated.xcconfig /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Generated.xcconfig
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/Generated.xcconfig /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
CpResource Flutter/flutter_assets /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/flutter_assets
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/flutter_assets /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
PBXCp Flutter/App.framework /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/App.framework /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
PBXCp Flutter/Flutter.framework /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -exclude Headers -exclude PrivateHeaders -exclude Modules -exclude *.tbd -resolve-src-symlinks /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter/Flutter.framework /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
CodeSign /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/App.framework
PhaseScriptExecution Thin\ Binary /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export ACTION=build
export AD_HOC_CODE_SIGNING_ALLOWED=YES
export ALTERNATE_GROUP=eng
export ALTERNATE_MODE=u+w,go-w,a+rX
export ALTERNATE_OWNER=efortuna
export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES=NO
export ALWAYS_SEARCH_USER_PATHS=NO
export ALWAYS_USE_SEPARATE_HEADERMAPS=NO
export APPLE_INTERNAL_DEVELOPER_DIR=/AppleInternal/Developer
export APPLE_INTERNAL_DIR=/AppleInternal
export APPLE_INTERNAL_DOCUMENTATION_DIR=/AppleInternal/Documentation
export APPLE_INTERNAL_LIBRARY_DIR=/AppleInternal/Library
export APPLE_INTERNAL_TOOLS=/AppleInternal/Developer/Tools
export APPLICATION_EXTENSION_API_ONLY=NO
export APPLY_RULES_IN_COPY_FILES=NO
export ARCHS=x86_64
export ARCHS_STANDARD="i386 x86_64"
export ARCHS_STANDARD_32_64_BIT="i386 x86_64"
export ARCHS_STANDARD_32_BIT=i386
export ARCHS_STANDARD_64_BIT=x86_64
export ARCHS_STANDARD_INCLUDING_64_BIT="i386 x86_64"
export ARCHS_UNIVERSAL_IPHONE_OS="i386 x86_64"
export ASSETCATALOG_COMPILER_APPICON_NAME=AppIcon
export AVAILABLE_PLATFORMS="appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator"
export BITCODE_GENERATION_MODE=marker
export BUILD_ACTIVE_RESOURCES_ONLY=YES
export BUILD_COMPONENTS="headers build"
export BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios
export BUILD_ROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Products
export BUILD_STYLE=
export BUILD_VARIANTS=normal
export BUILT_PRODUCTS_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export CACHE_ROOT=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
export CCHROOT=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
export CHMOD=/bin/chmod
export CHOWN=/usr/sbin/chown
export CLANG_ANALYZER_NONNULL=YES
export CLANG_CXX_LANGUAGE_STANDARD=gnu++0x
export CLANG_CXX_LIBRARY=libc++
export CLANG_ENABLE_MODULES=YES
export CLANG_ENABLE_OBJC_ARC=YES
export CLANG_MODULES_BUILD_SESSION_FILE=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache/Session.modulevalidation
export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING=YES
export CLANG_WARN_BOOL_CONVERSION=YES
export CLANG_WARN_COMMA=YES
export CLANG_WARN_CONSTANT_CONVERSION=YES
export CLANG_WARN_DIRECT_OBJC_ISA_USAGE=YES_ERROR
export CLANG_WARN_EMPTY_BODY=YES
export CLANG_WARN_ENUM_CONVERSION=YES
export CLANG_WARN_INFINITE_RECURSION=YES
export CLANG_WARN_INT_CONVERSION=YES
export CLANG_WARN_NON_LITERAL_NULL_CONVERSION=YES
export CLANG_WARN_OBJC_LITERAL_CONVERSION=YES
export CLANG_WARN_OBJC_ROOT_CLASS=YES_ERROR
export CLANG_WARN_RANGE_LOOP_ANALYSIS=YES
export CLANG_WARN_STRICT_PROTOTYPES=YES
export CLANG_WARN_SUSPICIOUS_MOVE=YES
export CLANG_WARN_UNREACHABLE_CODE=YES
export CLANG_WARN__DUPLICATE_METHOD_MATCH=YES
export CLASS_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
export CLEAN_PRECOMPS=YES
export CLONE_HEADERS=NO
export CODESIGNING_FOLDER_PATH=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
export CODE_SIGNING_ALLOWED=YES
export CODE_SIGNING_REQUIRED=YES
export CODE_SIGN_CONTEXT_CLASS=XCiPhoneSimulatorCodeSignContext
export CODE_SIGN_IDENTITY=-
export COLOR_DIAGNOSTICS=NO
export COMBINE_HIDPI_IMAGES=NO
export COMMAND_MODE=legacy
export COMPILER_INDEX_STORE_ENABLE=Default
export COMPOSITE_SDK_DIRS=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/CompositeSDKs
export COMPRESS_PNG_FILES=YES
export CONFIGURATION=Debug
export CONFIGURATION_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export CONFIGURATION_TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
export CONTENTS_FOLDER_PATH=Runner.app
export COPYING_PRESERVES_HFS_DATA=NO
export COPY_HEADERS_RUN_UNIFDEF=NO
export COPY_PHASE_STRIP=NO
export COPY_RESOURCES_FROM_STATIC_FRAMEWORKS=YES
export CORRESPONDING_DEVICE_PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
export CORRESPONDING_DEVICE_PLATFORM_NAME=iphoneos
export CORRESPONDING_DEVICE_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk
export CORRESPONDING_DEVICE_SDK_NAME=iphoneos11.2
export CP=/bin/cp
export CREATE_INFOPLIST_SECTION_IN_BINARY=NO
export CURRENT_ARCH=x86_64
export CURRENT_VARIANT=normal
export DEAD_CODE_STRIPPING=YES
export DEBUGGING_SYMBOLS=YES
export DEBUG_INFORMATION_FORMAT=dwarf
export DEFAULT_COMPILER=com.apple.compilers.llvm.clang.1_0
export DEFAULT_KEXT_INSTALL_PATH=/System/Library/Extensions
export DEFINES_MODULE=NO
export DEPLOYMENT_LOCATION=NO
export DEPLOYMENT_POSTPROCESSING=NO
export DEPLOYMENT_TARGET_CLANG_ENV_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_CLANG_FLAG_NAME=mios-simulator-version-min
export DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX=-mios-simulator-version-min=
export DEPLOYMENT_TARGET_SETTING_NAME=IPHONEOS_DEPLOYMENT_TARGET
export DEPLOYMENT_TARGET_SUGGESTED_VALUES="8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2"
export DERIVED_FILES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DERIVED_SOURCES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
export DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export DEVELOPER_FRAMEWORKS_DIR=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_FRAMEWORKS_DIR_QUOTED=/Applications/Xcode.app/Contents/Developer/Library/Frameworks
export DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/Developer/Library
export DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
export DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Tools
export DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export DEVELOPMENT_LANGUAGE=English
export DOCUMENTATION_FOLDER_PATH=Runner.app/English.lproj/Documentation
export DO_HEADER_SCANNING_IN_JAM=NO
export DSTROOT=/tmp/Runner.dst
export DT_TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export DWARF_DSYM_FILE_NAME=Runner.app.dSYM
export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT=NO
export DWARF_DSYM_FOLDER_PATH=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export EFFECTIVE_PLATFORM_NAME=-iphonesimulator
export EMBEDDED_CONTENT_CONTAINS_SWIFT=NO
export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE=NO
export ENABLE_BITCODE=NO
export ENABLE_DEFAULT_HEADER_SEARCH_PATHS=YES
export ENABLE_HEADER_DEPENDENCIES=YES
export ENABLE_ON_DEMAND_RESOURCES=YES
export ENABLE_STRICT_OBJC_MSGSEND=YES
export ENABLE_TESTABILITY=YES
export ENTITLEMENTS_REQUIRED=YES
export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS=".DS_Store .svn .git .hg CVS"
export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES="*.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj"
export EXECUTABLES_FOLDER_PATH=Runner.app/Executables
export EXECUTABLE_FOLDER_PATH=Runner.app
export EXECUTABLE_NAME=Runner
export EXECUTABLE_PATH=Runner.app/Runner
export EXPANDED_CODE_SIGN_IDENTITY=-
export EXPANDED_CODE_SIGN_IDENTITY_NAME=-
export EXPANDED_PROVISIONING_PROFILE=
export FILE_LIST=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
export FIXED_FILES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
export FLUTTER_APPLICATION_PATH=/Users/efortuna/flutter/examples/flutter_gallery
export FLUTTER_BUILD_DIR=build
export FLUTTER_BUILD_MODE=debug
export FLUTTER_FRAMEWORK_DIR=/Users/efortuna/flutter/bin/cache/artifacts/engine/ios
export FLUTTER_ROOT=/Users/efortuna/flutter
export FLUTTER_TARGET=/Users/efortuna/flutter/examples/flutter_gallery/lib/main.dart
export FRAMEWORKS_FOLDER_PATH=Runner.app/Frameworks
export FRAMEWORK_FLAG_PREFIX=-framework
export FRAMEWORK_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter"
export FRAMEWORK_VERSION=A
export FULL_PRODUCT_NAME=Runner.app
export GCC3_VERSION=3.3
export GCC_C_LANGUAGE_STANDARD=gnu99
export GCC_DYNAMIC_NO_PIC=NO
export GCC_INLINES_ARE_PRIVATE_EXTERN=YES
export GCC_NO_COMMON_BLOCKS=YES
export GCC_OBJC_LEGACY_DISPATCH=YES
export GCC_OPTIMIZATION_LEVEL=0
export GCC_PFE_FILE_C_DIALECTS="c objective-c c++ objective-c++"
export GCC_PREPROCESSOR_DEFINITIONS="DEBUG=1 COCOAPODS=1 COCOAPODS=1"
export GCC_SYMBOLS_PRIVATE_EXTERN=NO
export GCC_TREAT_WARNINGS_AS_ERRORS=NO
export GCC_VERSION=com.apple.compilers.llvm.clang.1_0
export GCC_VERSION_IDENTIFIER=com_apple_compilers_llvm_clang_1_0
export GCC_WARN_64_TO_32_BIT_CONVERSION=YES
export GCC_WARN_ABOUT_RETURN_TYPE=YES_ERROR
export GCC_WARN_UNDECLARED_SELECTOR=YES
export GCC_WARN_UNINITIALIZED_AUTOS=YES_AGGRESSIVE
export GCC_WARN_UNUSED_FUNCTION=YES
export GCC_WARN_UNUSED_VARIABLE=YES
export GENERATE_MASTER_OBJECT_FILE=NO
export GENERATE_PKGINFO_FILE=YES
export GENERATE_PROFILING_CODE=NO
export GENERATE_TEXT_BASED_STUBS=NO
export GID=5000
export GROUP=eng
export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT=YES
export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES=YES
export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS=YES
export HEADERMAP_INCLUDES_PROJECT_HEADERS=YES
export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES=YES
export HEADERMAP_USES_VFS=NO
export HEADER_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/include /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
export HIDE_BITCODE_SYMBOLS=YES
export HOME=/Users/efortuna
export ICONV=/usr/bin/iconv
export INFOPLIST_EXPAND_BUILD_SETTINGS=YES
export INFOPLIST_FILE=Runner/Info.plist
export INFOPLIST_OUTPUT_FORMAT=binary
export INFOPLIST_PATH=Runner.app/Info.plist
export INFOPLIST_PREPROCESS=NO
export INFOSTRINGS_PATH=Runner.app/English.lproj/InfoPlist.strings
export INLINE_PRIVATE_FRAMEWORKS=NO
export INSTALLHDRS_COPY_PHASE=NO
export INSTALLHDRS_SCRIPT_PHASE=NO
export INSTALL_DIR=/tmp/Runner.dst/Applications
export INSTALL_GROUP=eng
export INSTALL_MODE_FLAG=u+w,go-w,a+rX
export INSTALL_OWNER=efortuna
export INSTALL_PATH=/Applications
export INSTALL_ROOT=/tmp/Runner.dst
export IPHONEOS_DEPLOYMENT_TARGET=8.0
export JAVAC_DEFAULT_FLAGS="-J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8"
export JAVA_APP_STUB=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
export JAVA_ARCHIVE_CLASSES=YES
export JAVA_ARCHIVE_TYPE=JAR
export JAVA_COMPILER=/usr/bin/javac
export JAVA_FOLDER_PATH=Runner.app/Java
export JAVA_FRAMEWORK_RESOURCES_DIRS=Resources
export JAVA_JAR_FLAGS=cv
export JAVA_SOURCE_SUBDIR=.
export JAVA_USE_DEPENDENCIES=YES
export JAVA_ZIP_FLAGS=-urg
export JIKES_DEFAULT_FLAGS="+E +OLDCSO"
export KEEP_PRIVATE_EXTERNS=NO
export LD_DEPENDENCY_INFO_FILE=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
export LD_GENERATE_MAP_FILE=NO
export LD_MAP_FILE_PATH=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
export LD_NO_PIE=NO
export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER=YES
export LD_RUNPATH_SEARCH_PATHS=" '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks"
export LEGACY_DEVELOPER_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
export LEX=lex
export LIBRARY_FLAG_NOSPACE=YES
export LIBRARY_FLAG_PREFIX=-l
export LIBRARY_KEXT_INSTALL_PATH=/Library/Extensions
export LIBRARY_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Reachability /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/connectivity /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/device_info /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/url_launcher /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/video_player /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter"
export LINKER_DISPLAYS_MANGLED_NAMES=NO
export LINK_FILE_LIST_normal_x86_64=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner.LinkFileList
export LINK_WITH_STANDARD_LIBRARIES=YES
export LOCALIZABLE_CONTENT_DIR=
export LOCALIZED_RESOURCES_FOLDER_PATH=Runner.app/English.lproj
export LOCAL_ADMIN_APPS_DIR=/Applications/Utilities
export LOCAL_APPS_DIR=/Applications
export LOCAL_DEVELOPER_DIR=/Library/Developer
export LOCAL_LIBRARY_DIR=/Library
export LOCROOT=
export LOCSYMROOT=
export MACH_O_TYPE=mh_execute
export MAC_OS_X_PRODUCT_BUILD_VERSION=17F77
export MAC_OS_X_VERSION_ACTUAL=101305
export MAC_OS_X_VERSION_MAJOR=101300
export MAC_OS_X_VERSION_MINOR=1305
export METAL_LIBRARY_FILE_BASE=default
export METAL_LIBRARY_OUTPUT_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
export MODULE_CACHE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache
export MTL_ENABLE_DEBUG_INFO=YES
export NATIVE_ARCH=i386
export NATIVE_ARCH_32_BIT=i386
export NATIVE_ARCH_64_BIT=x86_64
export NATIVE_ARCH_ACTUAL=x86_64
export NO_COMMON=YES
export OBJC_ABI_VERSION=2
export OBJECT_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
export OBJECT_FILE_DIR_normal=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
export OBJROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
export ONLY_ACTIVE_ARCH=YES
export OS=MACOS
export OSAC=/usr/bin/osacompile
export OTHER_CFLAGS=" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\""
export OTHER_CPLUSPLUSFLAGS=" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher\" -isystem \"/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player\""
export OTHER_LDFLAGS=" -ObjC -l\"Reachability\" -l\"connectivity\" -l\"device_info\" -l\"url_launcher\" -l\"video_player\" -framework \"Flutter\" -framework \"SystemConfiguration\" -ObjC -l\"Reachability\" -l\"connectivity\" -l\"device_info\" -l\"url_launcher\" -l\"video_player\" -framework \"Flutter\" -framework \"SystemConfiguration\""
export PACKAGE_TYPE=com.apple.package-type.wrapper.application
export PASCAL_STRINGS=YES
export PATH="/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Tools:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES="/usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms"
export PBDEVELOPMENTPLIST_PATH=Runner.app/pbdevelopment.plist
export PFE_FILE_C_DIALECTS=objective-c
export PKGINFO_FILE_PATH=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
export PKGINFO_PATH=Runner.app/PkgInfo
export PLATFORM_DEVELOPER_APPLICATIONS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
export PLATFORM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
export PLATFORM_DEVELOPER_LIBRARY_DIR=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
export PLATFORM_DEVELOPER_SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
export PLATFORM_DEVELOPER_TOOLS_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
export PLATFORM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
export PLATFORM_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
export PLATFORM_DISPLAY_NAME="iOS Simulator"
export PLATFORM_NAME=iphonesimulator
export PLATFORM_PREFERRED_ARCH=x86_64
export PLIST_FILE_OUTPUT_FORMAT=binary
export PLUGINS_FOLDER_PATH=Runner.app/PlugIns
export PODS_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios
export PODS_CONFIGURATION_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export PODS_PODFILE_DIR_PATH=/Users/efortuna/flutter/examples/flutter_gallery/ios/.
export PODS_ROOT=/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods
export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR=YES
export PRECOMP_DESTINATION_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
export PRESERVE_DEAD_CODE_INITS_AND_TERMS=NO
export PREVIEW_DART_2=true
export PRIVATE_HEADERS_FOLDER_PATH=Runner.app/PrivateHeaders
export PRODUCT_BUNDLE_IDENTIFIER=io.flutter.examples.gallery
export PRODUCT_MODULE_NAME=Runner
export PRODUCT_NAME=Runner
export PRODUCT_SETTINGS_PATH=/Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/Info.plist
export PRODUCT_TYPE=com.apple.product-type.application
export PROFILING_CODE=NO
export PROJECT=Runner
export PROJECT_DERIVED_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/DerivedSources
export PROJECT_DIR=/Users/efortuna/flutter/examples/flutter_gallery/ios
export PROJECT_FILE_PATH=/Users/efortuna/flutter/examples/flutter_gallery/ios/Runner.xcodeproj
export PROJECT_NAME=Runner
export PROJECT_TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build
export PROJECT_TEMP_ROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
export PUBLIC_HEADERS_FOLDER_PATH=Runner.app/Headers
export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS=YES
export REMOVE_CVS_FROM_RESOURCES=YES
export REMOVE_GIT_FROM_RESOURCES=YES
export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES=YES
export REMOVE_HG_FROM_RESOURCES=YES
export REMOVE_SVN_FROM_RESOURCES=YES
export REZ_COLLECTOR_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
export REZ_OBJECTS_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
export REZ_SEARCH_PATHS="/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator "
export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES=NO
export SCRIPTS_FOLDER_PATH=Runner.app/Scripts
export SCRIPT_INPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_FILE_COUNT=0
export SCRIPT_OUTPUT_STREAM_FILE=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
export SDKROOT=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
export SDK_DIR=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
export SDK_DIR_iphonesimulator11_2=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
export SDK_NAME=iphonesimulator11.2
export SDK_NAMES=iphonesimulator11.2
export SDK_PRODUCT_BUILD_VERSION=15C107
export SDK_VERSION=11.2
export SDK_VERSION_ACTUAL=110200
export SDK_VERSION_MAJOR=110000
export SDK_VERSION_MINOR=200
export SED=/usr/bin/sed
export SEPARATE_STRIP=NO
export SEPARATE_SYMBOL_EDIT=NO
export SET_DIR_MODE_OWNER_GROUP=YES
export SET_FILE_MODE_OWNER_GROUP=NO
export SHALLOW_BUNDLE=YES
export SHARED_DERIVED_FILE_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/DerivedSources
export SHARED_FRAMEWORKS_FOLDER_PATH=Runner.app/SharedFrameworks
export SHARED_PRECOMPS_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/PrecompiledHeaders
export SHARED_SUPPORT_FOLDER_PATH=Runner.app/SharedSupport
export SKIP_INSTALL=NO
export SOURCE_ROOT=/Users/efortuna/flutter/examples/flutter_gallery/ios
export SRCROOT=/Users/efortuna/flutter/examples/flutter_gallery/ios
export STRINGS_FILE_OUTPUT_ENCODING=binary
export STRIP_BITCODE_FROM_COPIED_FILES=NO
export STRIP_INSTALLED_PRODUCT=YES
export STRIP_STYLE=all
export STRIP_SWIFT_SYMBOLS=YES
export SUPPORTED_DEVICE_FAMILIES=1,2
export SUPPORTED_PLATFORMS="iphonesimulator iphoneos"
export SUPPORTS_TEXT_BASED_API=NO
export SWIFT_PLATFORM_TARGET_PREFIX=ios
export SYMROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Products
export SYSTEM_ADMIN_APPS_DIR=/Applications/Utilities
export SYSTEM_APPS_DIR=/Applications
export SYSTEM_CORE_SERVICES_DIR=/System/Library/CoreServices
export SYSTEM_DEMOS_DIR=/Applications/Extras
export SYSTEM_DEVELOPER_APPS_DIR=/Applications/Xcode.app/Contents/Developer/Applications
export SYSTEM_DEVELOPER_BIN_DIR=/Applications/Xcode.app/Contents/Developer/usr/bin
export SYSTEM_DEVELOPER_DEMOS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples"
export SYSTEM_DEVELOPER_DIR=/Applications/Xcode.app/Contents/Developer
export SYSTEM_DEVELOPER_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library"
export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools"
export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Java Tools"
export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR="/Applications/Xcode.app/Contents/Developer/Applications/Performance Tools"
export SYSTEM_DEVELOPER_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes"
export SYSTEM_DEVELOPER_TOOLS=/Applications/Xcode.app/Contents/Developer/Tools
export SYSTEM_DEVELOPER_TOOLS_DOC_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools"
export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR="/Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools"
export SYSTEM_DEVELOPER_USR_DIR=/Applications/Xcode.app/Contents/Developer/usr
export SYSTEM_DEVELOPER_UTILITIES_DIR=/Applications/Xcode.app/Contents/Developer/Applications/Utilities
export SYSTEM_DOCUMENTATION_DIR=/Library/Documentation
export SYSTEM_KEXT_INSTALL_PATH=/System/Library/Extensions
export SYSTEM_LIBRARY_DIR=/System/Library
export TAPI_VERIFY_MODE=ErrorsOnly
export TARGETED_DEVICE_FAMILY=1,2
export TARGETNAME=Runner
export TARGET_BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
export TARGET_DEVICE_IDENTIFIER="dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder"
export TARGET_NAME=Runner
export TARGET_TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILES_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_FILE_DIR=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
export TEMP_ROOT=/Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
export TOOLCHAINS=com.apple.dt.toolchain.XcodeDefault
export TOOLCHAIN_DIR=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
export TREAT_MISSING_BASELINES_AS_TEST_FAILURES=NO
export UID=113079
export UNLOCALIZED_RESOURCES_FOLDER_PATH=Runner.app
export UNSTRIPPED_PRODUCT=NO
export USER=efortuna
export USER_APPS_DIR=/Users/efortuna/Applications
export USER_LIBRARY_DIR=/Users/efortuna/Library
export USE_DYNAMIC_NO_PIC=YES
export USE_HEADERMAP=YES
export USE_HEADER_SYMLINKS=NO
export VALIDATE_PRODUCT=NO
export VALID_ARCHS="i386 x86_64"
export VERBOSE_PBXCP=NO
export VERBOSE_SCRIPT_LOGGING=YES
export VERSIONPLIST_PATH=Runner.app/version.plist
export VERSION_INFO_BUILDER=efortuna
export VERSION_INFO_FILE=Runner_vers.c
export VERSION_INFO_STRING="\"@(#)PROGRAM:Runner PROJECT:Runner-\""
export WRAPPER_EXTENSION=app
export WRAPPER_NAME=Runner.app
export WRAPPER_SUFFIX=.app
export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES=NO
export XCODE_APP_SUPPORT_DIR=/Applications/Xcode.app/Contents/Developer/Library/Xcode
export XCODE_PRODUCT_BUILD_VERSION=9C40b
export XCODE_VERSION_ACTUAL=0920
export XCODE_VERSION_MAJOR=0900
export XCODE_VERSION_MINOR=0920
export XPCSERVICES_FOLDER_PATH=Runner.app/XPCServices
export YACC=yacc
export arch=x86_64
export variant=normal
/bin/sh -c /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-3B06AD1E1E4923F5004D2608.sh
PhaseScriptExecution [CP]\ Embed\ Pods\ Frameworks /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9935C741A3A9624590A8630E.sh
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
/bin/sh -c /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Script-9935C741A3A9624590A8630E.sh
mkdir -p /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks
rsync --delete -av --filter P .*.?????? --filter "- CVS/" --filter "- .svn/" --filter "- .git/" --filter "- .hg/" --filter "- Headers" --filter "- PrivateHeaders" --filter "- Modules" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios/Flutter.framework" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks"
building file list ... done
Flutter.framework/
Flutter.framework/Flutter
Flutter.framework/Info.plist
Flutter.framework/icudtl.dat
sent 73606751 bytes received 92 bytes 49071228.67 bytes/sec
total size is 73597465 speedup is 1.00
Stripped /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework/Flutter of architectures: armv7 arm64
Code Signing /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework with Identity -
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements '/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework'
CodeSign /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --preserve-metadata=identifier,entitlements,flags --timestamp=none /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework
/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app/Frameworks/Flutter.framework: replacing existing signature
Touch /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
/usr/bin/touch -c /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
CodeSign /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
cd /Users/efortuna/flutter/examples/flutter_gallery/ios
export CODESIGN_ALLOCATE=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/codesign_allocate
export PATH="/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools"
Signing Identity: "-"
/usr/bin/codesign --force --sign - --timestamp=none /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
** BUILD SUCCEEDED **
[ +18 ms] Xcode build done.
[ ] [ios/] /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout -showBuildSettings
[+1226 ms] Exit code 0 from: /usr/bin/env xcrun xcodebuild -configuration Debug VERBOSE_SCRIPT_LOGGING=YES -workspace Runner.xcworkspace -scheme Runner BUILD_DIR=/Users/efortuna/flutter/examples/flutter_gallery/build/ios -sdk iphonesimulator -arch x86_64 SCRIPT_OUTPUT_STREAM_FILE=/var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout -showBuildSettings
[ ] Build settings from command line:
ARCHS = x86_64
BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
SDKROOT = iphonesimulator11.2
VERBOSE_SCRIPT_LOGGING = YES
Build settings for action build and target Runner:
ACTION = build
AD_HOC_CODE_SIGNING_ALLOWED = YES
ALTERNATE_GROUP = eng
ALTERNATE_MODE = u+w,go-w,a+rX
ALTERNATE_OWNER = efortuna
ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = NO
ALWAYS_SEARCH_USER_PATHS = NO
ALWAYS_USE_SEPARATE_HEADERMAPS = NO
APPLE_INTERNAL_DEVELOPER_DIR = /AppleInternal/Developer
APPLE_INTERNAL_DIR = /AppleInternal
APPLE_INTERNAL_DOCUMENTATION_DIR = /AppleInternal/Documentation
APPLE_INTERNAL_LIBRARY_DIR = /AppleInternal/Library
APPLE_INTERNAL_TOOLS = /AppleInternal/Developer/Tools
APPLICATION_EXTENSION_API_ONLY = NO
APPLY_RULES_IN_COPY_FILES = NO
ARCHS = x86_64
ARCHS_STANDARD = i386 x86_64
ARCHS_STANDARD_32_64_BIT = i386 x86_64
ARCHS_STANDARD_32_BIT = i386
ARCHS_STANDARD_64_BIT = x86_64
ARCHS_STANDARD_INCLUDING_64_BIT = i386 x86_64
ARCHS_UNIVERSAL_IPHONE_OS = i386 x86_64
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon
AVAILABLE_PLATFORMS = appletvos appletvsimulator iphoneos iphonesimulator macosx watchos watchsimulator
BITCODE_GENERATION_MODE = marker
BUILD_ACTIVE_RESOURCES_ONLY = NO
BUILD_COMPONENTS = headers build
BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
BUILD_ROOT = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Products
BUILD_STYLE =
BUILD_VARIANTS = normal
BUILT_PRODUCTS_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
CACHE_ROOT = /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
CCHROOT = /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/C/com.apple.DeveloperTools/9.2-9C40b/Xcode
CHMOD = /bin/chmod
CHOWN = /usr/sbin/chown
CLANG_ANALYZER_NONNULL = YES
CLANG_CXX_LANGUAGE_STANDARD = gnu++0x
CLANG_CXX_LIBRARY = libc++
CLANG_ENABLE_MODULES = YES
CLANG_ENABLE_OBJC_ARC = YES
CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES
CLANG_WARN_BOOL_CONVERSION = YES
CLANG_WARN_COMMA = YES
CLANG_WARN_CONSTANT_CONVERSION = YES
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR
CLANG_WARN_EMPTY_BODY = YES
CLANG_WARN_ENUM_CONVERSION = YES
CLANG_WARN_INFINITE_RECURSION = YES
CLANG_WARN_INT_CONVERSION = YES
CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES
CLANG_WARN_OBJC_LITERAL_CONVERSION = YES
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR
CLANG_WARN_RANGE_LOOP_ANALYSIS = YES
CLANG_WARN_STRICT_PROTOTYPES = YES
CLANG_WARN_SUSPICIOUS_MOVE = YES
CLANG_WARN_UNREACHABLE_CODE = YES
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES
CLASS_FILE_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/JavaClasses
CLEAN_PRECOMPS = YES
CLONE_HEADERS = NO
CODESIGNING_FOLDER_PATH = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
CODE_SIGNING_ALLOWED = YES
CODE_SIGNING_REQUIRED = YES
CODE_SIGN_CONTEXT_CLASS = XCiPhoneSimulatorCodeSignContext
CODE_SIGN_IDENTITY = -
COLOR_DIAGNOSTICS = NO
COMBINE_HIDPI_IMAGES = NO
COMPILER_INDEX_STORE_ENABLE = Default
COMPOSITE_SDK_DIRS = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/CompositeSDKs
COMPRESS_PNG_FILES = YES
CONFIGURATION = Debug
CONFIGURATION_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
CONFIGURATION_TEMP_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator
CONTENTS_FOLDER_PATH = Runner.app
COPYING_PRESERVES_HFS_DATA = NO
COPY_HEADERS_RUN_UNIFDEF = NO
COPY_PHASE_STRIP = NO
COPY_RESOURCES_FROM_STATIC_FRAMEWORKS = YES
CORRESPONDING_DEVICE_PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
CORRESPONDING_DEVICE_PLATFORM_NAME = iphoneos
CORRESPONDING_DEVICE_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS11.2.sdk
CORRESPONDING_DEVICE_SDK_NAME = iphoneos11.2
CP = /bin/cp
CREATE_INFOPLIST_SECTION_IN_BINARY = NO
CURRENT_ARCH = x86_64
CURRENT_VARIANT = normal
DEAD_CODE_STRIPPING = YES
DEBUGGING_SYMBOLS = YES
DEBUG_INFORMATION_FORMAT = dwarf
DEFAULT_COMPILER = com.apple.compilers.llvm.clang.1_0
DEFAULT_KEXT_INSTALL_PATH = /System/Library/Extensions
DEFINES_MODULE = NO
DEPLOYMENT_LOCATION = NO
DEPLOYMENT_POSTPROCESSING = NO
DEPLOYMENT_TARGET_CLANG_ENV_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_CLANG_FLAG_NAME = mios-simulator-version-min
DEPLOYMENT_TARGET_CLANG_FLAG_PREFIX = -mios-simulator-version-min=
DEPLOYMENT_TARGET_SETTING_NAME = IPHONEOS_DEPLOYMENT_TARGET
DEPLOYMENT_TARGET_SUGGESTED_VALUES = 8.0 8.1 8.2 8.3 8.4 9.0 9.1 9.2 9.3 10.0 10.1 10.2 10.3 11.0 11.1 11.2
DERIVED_FILES_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_FILE_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DERIVED_SOURCES_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/DerivedSources
DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
DEVELOPER_FRAMEWORKS_DIR = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_FRAMEWORKS_DIR_QUOTED = /Applications/Xcode.app/Contents/Developer/Library/Frameworks
DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/Developer/Library
DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Tools
DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
DEVELOPMENT_LANGUAGE = English
DOCUMENTATION_FOLDER_PATH = Runner.app/English.lproj/Documentation
DO_HEADER_SCANNING_IN_JAM = NO
DSTROOT = /tmp/Runner.dst
DT_TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
DWARF_DSYM_FILE_NAME = Runner.app.dSYM
DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT = NO
DWARF_DSYM_FOLDER_PATH = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
EFFECTIVE_PLATFORM_NAME = -iphonesimulator
EMBEDDED_CONTENT_CONTAINS_SWIFT = NO
EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE = NO
ENABLE_BITCODE = NO
ENABLE_DEFAULT_HEADER_SEARCH_PATHS = YES
ENABLE_HEADER_DEPENDENCIES = YES
ENABLE_ON_DEMAND_RESOURCES = YES
ENABLE_STRICT_OBJC_MSGSEND = YES
ENABLE_TESTABILITY = YES
ENTITLEMENTS_REQUIRED = YES
EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS = .DS_Store .svn .git .hg CVS
EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES = *.nib *.lproj *.framework *.gch *.xcode* *.xcassets (*) .DS_Store CVS .svn .git .hg *.pbproj *.pbxproj
EXECUTABLES_FOLDER_PATH = Runner.app/Executables
EXECUTABLE_FOLDER_PATH = Runner.app
EXECUTABLE_NAME = Runner
EXECUTABLE_PATH = Runner.app/Runner
EXPANDED_CODE_SIGN_IDENTITY =
EXPANDED_CODE_SIGN_IDENTITY_NAME =
EXPANDED_PROVISIONING_PROFILE =
FILE_LIST = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects/LinkFileList
FIXED_FILES_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/FixedFiles
FLUTTER_APPLICATION_PATH = /Users/efortuna/flutter/examples/flutter_gallery
FLUTTER_BUILD_DIR = build
FLUTTER_BUILD_MODE = debug
FLUTTER_FRAMEWORK_DIR = /Users/efortuna/flutter/bin/cache/artifacts/engine/ios
FLUTTER_ROOT = /Users/efortuna/flutter
FLUTTER_TARGET = /Users/efortuna/flutter/examples/flutter_gallery/lib/main.dart
FRAMEWORKS_FOLDER_PATH = Runner.app/Frameworks
FRAMEWORK_FLAG_PREFIX = -framework
FRAMEWORK_SEARCH_PATHS = "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/../../../../bin/cache/artifacts/engine/ios" /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter
FRAMEWORK_VERSION = A
FULL_PRODUCT_NAME = Runner.app
GCC3_VERSION = 3.3
GCC_C_LANGUAGE_STANDARD = gnu99
GCC_DYNAMIC_NO_PIC = NO
GCC_INLINES_ARE_PRIVATE_EXTERN = YES
GCC_NO_COMMON_BLOCKS = YES
GCC_OBJC_LEGACY_DISPATCH = YES
GCC_OPTIMIZATION_LEVEL = 0
GCC_PFE_FILE_C_DIALECTS = c objective-c c++ objective-c++
GCC_PREPROCESSOR_DEFINITIONS = DEBUG=1 COCOAPODS=1 COCOAPODS=1
GCC_SYMBOLS_PRIVATE_EXTERN = NO
GCC_TREAT_WARNINGS_AS_ERRORS = NO
GCC_VERSION = com.apple.compilers.llvm.clang.1_0
GCC_VERSION_IDENTIFIER = com_apple_compilers_llvm_clang_1_0
GCC_WARN_64_TO_32_BIT_CONVERSION = YES
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR
GCC_WARN_UNDECLARED_SELECTOR = YES
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE
GCC_WARN_UNUSED_FUNCTION = YES
GCC_WARN_UNUSED_VARIABLE = YES
GENERATE_MASTER_OBJECT_FILE = NO
GENERATE_PKGINFO_FILE = YES
GENERATE_PROFILING_CODE = NO
GENERATE_TEXT_BASED_STUBS = NO
GID = 5000
GROUP = eng
HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT = YES
HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES = YES
HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS = YES
HEADERMAP_INCLUDES_PROJECT_HEADERS = YES
HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES = YES
HEADERMAP_USES_VFS = NO
HEADER_SEARCH_PATHS = "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
HIDE_BITCODE_SYMBOLS = YES
HOME = /Users/efortuna
ICONV = /usr/bin/iconv
INFOPLIST_EXPAND_BUILD_SETTINGS = YES
INFOPLIST_FILE = Runner/Info.plist
INFOPLIST_OUTPUT_FORMAT = binary
INFOPLIST_PATH = Runner.app/Info.plist
INFOPLIST_PREPROCESS = NO
INFOSTRINGS_PATH = Runner.app/English.lproj/InfoPlist.strings
INLINE_PRIVATE_FRAMEWORKS = NO
INSTALLHDRS_COPY_PHASE = NO
INSTALLHDRS_SCRIPT_PHASE = NO
INSTALL_DIR = /tmp/Runner.dst/Applications
INSTALL_GROUP = eng
INSTALL_MODE_FLAG = u+w,go-w,a+rX
INSTALL_OWNER = efortuna
INSTALL_PATH = /Applications
INSTALL_ROOT = /tmp/Runner.dst
IPHONEOS_DEPLOYMENT_TARGET = 8.0
JAVAC_DEFAULT_FLAGS = -J-Xms64m -J-XX:NewSize=4M -J-Dfile.encoding=UTF8
JAVA_APP_STUB = /System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
JAVA_ARCHIVE_CLASSES = YES
JAVA_ARCHIVE_TYPE = JAR
JAVA_COMPILER = /usr/bin/javac
JAVA_FOLDER_PATH = Runner.app/Java
JAVA_FRAMEWORK_RESOURCES_DIRS = Resources
JAVA_JAR_FLAGS = cv
JAVA_SOURCE_SUBDIR = .
JAVA_USE_DEPENDENCIES = YES
JAVA_ZIP_FLAGS = -urg
JIKES_DEFAULT_FLAGS = +E +OLDCSO
KEEP_PRIVATE_EXTERNS = NO
LD_DEPENDENCY_INFO_FILE = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal/x86_64/Runner_dependency_info.dat
LD_GENERATE_MAP_FILE = NO
LD_MAP_FILE_PATH = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Runner-LinkMap-normal-x86_64.txt
LD_NO_PIE = NO
LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER = YES
LD_RUNPATH_SEARCH_PATHS = '@executable_path/Frameworks' '@loader_path/Frameworks' '@executable_path/Frameworks' '@loader_path/Frameworks' @executable_path/Frameworks
LEGACY_DEVELOPER_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
LEX = lex
LIBRARY_FLAG_NOSPACE = YES
LIBRARY_FLAG_PREFIX = -l
LIBRARY_KEXT_INSTALL_PATH = /Library/Extensions
LIBRARY_SEARCH_PATHS = "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/video_player" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Reachability" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/connectivity" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/device_info" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/url_launcher" "/Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/video_player" /Users/efortuna/flutter/examples/flutter_gallery/ios/Flutter
LINKER_DISPLAYS_MANGLED_NAMES = NO
LINK_FILE_LIST_normal_x86_64 =
LINK_WITH_STANDARD_LIBRARIES = YES
LOCALIZABLE_CONTENT_DIR =
LOCALIZED_RESOURCES_FOLDER_PATH = Runner.app/English.lproj
LOCAL_ADMIN_APPS_DIR = /Applications/Utilities
LOCAL_APPS_DIR = /Applications
LOCAL_DEVELOPER_DIR = /Library/Developer
LOCAL_LIBRARY_DIR = /Library
LOCROOT =
LOCSYMROOT =
MACH_O_TYPE = mh_execute
MAC_OS_X_PRODUCT_BUILD_VERSION = 17F77
MAC_OS_X_VERSION_ACTUAL = 101305
MAC_OS_X_VERSION_MAJOR = 101300
MAC_OS_X_VERSION_MINOR = 1305
METAL_LIBRARY_FILE_BASE = default
METAL_LIBRARY_OUTPUT_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/Runner.app
MODULE_CACHE_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/ModuleCache
MTL_ENABLE_DEBUG_INFO = YES
NATIVE_ARCH = i386
NATIVE_ARCH_32_BIT = i386
NATIVE_ARCH_64_BIT = x86_64
NATIVE_ARCH_ACTUAL = x86_64
NO_COMMON = YES
OBJC_ABI_VERSION = 2
OBJECT_FILE_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects
OBJECT_FILE_DIR_normal = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/Objects-normal
OBJROOT = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
ONLY_ACTIVE_ARCH = YES
OS = MACOS
OSAC = /usr/bin/osacompile
OTHER_CFLAGS = -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
OTHER_CPLUSPLUSFLAGS = -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Flutter" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/Reachability" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/connectivity" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/device_info" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/url_launcher" -isystem "/Users/efortuna/flutter/examples/flutter_gallery/ios/Pods/Headers/Public/video_player"
OTHER_LDFLAGS = -ObjC -l"Reachability" -l"connectivity" -l"device_info" -l"url_launcher" -l"video_player" -framework "Flutter" -framework "SystemConfiguration" -ObjC -l"Reachability" -l"connectivity" -l"device_info" -l"url_launcher" -l"video_player" -framework "Flutter" -framework "SystemConfiguration"
PACKAGE_TYPE = com.apple.package-type.wrapper.application
PASCAL_STRINGS = YES
PATH = /Applications/Xcode.app/Contents/Developer/usr/bin:/Users/efortuna/flutter/bin:/usr/local/git/current/bin:/usr/local/bin:/usr/bin:/bin:/usr/local/sbin:/usr/sbin:/sbin:/Users/efortuna/dart/depot_tools
PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES = /usr/include /usr/local/include /System/Library/Frameworks /System/Library/PrivateFrameworks /Applications/Xcode.app/Contents/Developer/Headers /Applications/Xcode.app/Contents/Developer/SDKs /Applications/Xcode.app/Contents/Developer/Platforms
PBDEVELOPMENTPLIST_PATH = Runner.app/pbdevelopment.plist
PFE_FILE_C_DIALECTS = objective-c
PKGINFO_FILE_PATH = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PkgInfo
PKGINFO_PATH = Runner.app/PkgInfo
PLATFORM_DEVELOPER_APPLICATIONS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications
PLATFORM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin
PLATFORM_DEVELOPER_LIBRARY_DIR = /Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer/Library
PLATFORM_DEVELOPER_SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs
PLATFORM_DEVELOPER_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools
PLATFORM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr
PLATFORM_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
PLATFORM_DISPLAY_NAME = iOS Simulator
PLATFORM_NAME = iphonesimulator
PLATFORM_PREFERRED_ARCH = x86_64
PLIST_FILE_OUTPUT_FORMAT = binary
PLUGINS_FOLDER_PATH = Runner.app/PlugIns
PODS_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios
PODS_CONFIGURATION_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
PODS_PODFILE_DIR_PATH = /Users/efortuna/flutter/examples/flutter_gallery/ios/.
PODS_ROOT = /Users/efortuna/flutter/examples/flutter_gallery/ios/Pods
PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR = YES
PRECOMP_DESTINATION_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/PrefixHeaders
PRESERVE_DEAD_CODE_INITS_AND_TERMS = NO
PREVIEW_DART_2 = true
PRIVATE_HEADERS_FOLDER_PATH = Runner.app/PrivateHeaders
PRODUCT_BUNDLE_IDENTIFIER = io.flutter.examples.gallery
PRODUCT_MODULE_NAME = Runner
PRODUCT_NAME = Runner
PRODUCT_SETTINGS_PATH = /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner/Info.plist
PRODUCT_TYPE = com.apple.product-type.application
PROFILING_CODE = NO
PROJECT = Runner
PROJECT_DERIVED_FILE_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/DerivedSources
PROJECT_DIR = /Users/efortuna/flutter/examples/flutter_gallery/ios
PROJECT_FILE_PATH = /Users/efortuna/flutter/examples/flutter_gallery/ios/Runner.xcodeproj
PROJECT_NAME = Runner
PROJECT_TEMP_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build
PROJECT_TEMP_ROOT = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
PUBLIC_HEADERS_FOLDER_PATH = Runner.app/Headers
RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS = YES
REMOVE_CVS_FROM_RESOURCES = YES
REMOVE_GIT_FROM_RESOURCES = YES
REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES = YES
REMOVE_HG_FROM_RESOURCES = YES
REMOVE_SVN_FROM_RESOURCES = YES
REZ_COLLECTOR_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources
REZ_OBJECTS_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build/ResourceManagerResources/Objects
SCAN_ALL_SOURCE_FILES_FOR_INCLUDES = NO
SCRIPTS_FOLDER_PATH = Runner.app/Scripts
SCRIPT_OUTPUT_STREAM_FILE = /var/folders/gh/t3brxdf52836pfb0qqzsd638003fdq/T/flutter_build_log_pipe4Px4Si/pipe_to_stdout
SDKROOT = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
SDK_DIR = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
SDK_DIR_iphonesimulator11_2 = /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator11.2.sdk
SDK_NAME = iphonesimulator11.2
SDK_NAMES = iphonesimulator11.2
SDK_PRODUCT_BUILD_VERSION = 15C107
SDK_VERSION = 11.2
SDK_VERSION_ACTUAL = 110200
SDK_VERSION_MAJOR = 110000
SDK_VERSION_MINOR = 200
SED = /usr/bin/sed
SEPARATE_STRIP = NO
SEPARATE_SYMBOL_EDIT = NO
SET_DIR_MODE_OWNER_GROUP = YES
SET_FILE_MODE_OWNER_GROUP = NO
SHALLOW_BUNDLE = YES
SHARED_DERIVED_FILE_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator/DerivedSources
SHARED_FRAMEWORKS_FOLDER_PATH = Runner.app/SharedFrameworks
SHARED_PRECOMPS_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/PrecompiledHeaders
SHARED_SUPPORT_FOLDER_PATH = Runner.app/SharedSupport
SKIP_INSTALL = NO
SOURCE_ROOT = /Users/efortuna/flutter/examples/flutter_gallery/ios
SRCROOT = /Users/efortuna/flutter/examples/flutter_gallery/ios
STRINGS_FILE_OUTPUT_ENCODING = binary
STRIP_BITCODE_FROM_COPIED_FILES = NO
STRIP_INSTALLED_PRODUCT = YES
STRIP_STYLE = all
STRIP_SWIFT_SYMBOLS = YES
SUPPORTED_DEVICE_FAMILIES = 1,2
SUPPORTED_PLATFORMS = iphonesimulator iphoneos
SUPPORTS_TEXT_BASED_API = NO
SWIFT_PLATFORM_TARGET_PREFIX = ios
SYMROOT = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Products
SYSTEM_ADMIN_APPS_DIR = /Applications/Utilities
SYSTEM_APPS_DIR = /Applications
SYSTEM_CORE_SERVICES_DIR = /System/Library/CoreServices
SYSTEM_DEMOS_DIR = /Applications/Extras
SYSTEM_DEVELOPER_APPS_DIR = /Applications/Xcode.app/Contents/Developer/Applications
SYSTEM_DEVELOPER_BIN_DIR = /Applications/Xcode.app/Contents/Developer/usr/bin
SYSTEM_DEVELOPER_DEMOS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built Examples
SYSTEM_DEVELOPER_DIR = /Applications/Xcode.app/Contents/Developer
SYSTEM_DEVELOPER_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library
SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Graphics Tools
SYSTEM_DEVELOPER_JAVA_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Java Tools
SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Performance Tools
SYSTEM_DEVELOPER_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes
SYSTEM_DEVELOPER_TOOLS = /Applications/Xcode.app/Contents/Developer/Tools
SYSTEM_DEVELOPER_TOOLS_DOC_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/documentation/DeveloperTools
SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR = /Applications/Xcode.app/Contents/Developer/ADC Reference Library/releasenotes/DeveloperTools
SYSTEM_DEVELOPER_USR_DIR = /Applications/Xcode.app/Contents/Developer/usr
SYSTEM_DEVELOPER_UTILITIES_DIR = /Applications/Xcode.app/Contents/Developer/Applications/Utilities
SYSTEM_DOCUMENTATION_DIR = /Library/Documentation
SYSTEM_KEXT_INSTALL_PATH = /System/Library/Extensions
SYSTEM_LIBRARY_DIR = /System/Library
TAPI_VERIFY_MODE = ErrorsOnly
TARGETED_DEVICE_FAMILY = 1,2
TARGETNAME = Runner
TARGET_BUILD_DIR = /Users/efortuna/flutter/examples/flutter_gallery/build/ios/Debug-iphonesimulator
TARGET_NAME = Runner
TARGET_TEMP_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILES_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_FILE_DIR = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex/Runner.build/Debug-iphonesimulator/Runner.build
TEMP_ROOT = /Users/efortuna/Library/Developer/Xcode/DerivedData/Runner-dggtmthzicdjgybifznxqcywxsyf/Build/Intermediates.noindex
TOOLCHAIN_DIR = /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
TREAT_MISSING_BASELINES_AS_TEST_FAILURES = NO
UID = 113079
UNLOCALIZED_RESOURCES_FOLDER_PATH = Runner.app
UNSTRIPPED_PRODUCT = NO
USER = efortuna
USER_APPS_DIR = /Users/efortuna/Applications
USER_LIBRARY_DIR = /Users/efortuna/Library
USE_DYNAMIC_NO_PIC = YES
USE_HEADERMAP = YES
USE_HEADER_SYMLINKS = NO
VALIDATE_PRODUCT = NO
VALID_ARCHS = i386 x86_64
VERBOSE_PBXCP = NO
VERBOSE_SCRIPT_LOGGING = YES
VERSIONPLIST_PATH = Runner.app/version.plist
VERSION_INFO_BUILDER = efortuna
VERSION_INFO_FILE = Runner_vers.c
VERSION_INFO_STRING = "@(#)PROGRAM:Runner PROJECT:Runner-"
WRAPPER_EXTENSION = app
WRAPPER_NAME = Runner.app
WRAPPER_SUFFIX = .app
WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES = NO
XCODE_APP_SUPPORT_DIR = /Applications/Xcode.app/Contents/Developer/Library/Xcode
XCODE_PRODUCT_BUILD_VERSION = 9C40b
XCODE_VERSION_ACTUAL = 0920
XCODE_VERSION_MAJOR = 0900
XCODE_VERSION_MINOR = 0920
XPCSERVICES_FOLDER_PATH = Runner.app/XPCServices
YACC = yacc
arch = x86_64
variant = normal
[ +681 ms] /usr/bin/xcrun simctl install DB25ADD2-E839-479A-8375-B1009FD4A6AF /Users/efortuna/flutter/examples/flutter_gallery/build/ios/iphonesimulator/Runner.app
[+1631 ms] /usr/bin/xcrun simctl launch DB25ADD2-E839-479A-8375-B1009FD4A6AF io.flutter.examples.gallery --enable-dart-profiling --enable-checked-mode --observatory-port=8100
[ +284 ms] io.flutter.examples.gallery: 22450
[ ] Waiting for observatory port to be available...
[+1346 ms] [DEVICE LOG] 2018-07-11 15:05:30.862652-0700 localhost Runner[22450]: (Runner) Created Activity ID: 0x35f50, Description: Loading Preferences From System CFPrefsD For Search List
[ +1 ms] [DEVICE LOG] 2018-07-11 15:05:30.864415-0700 localhost Runner[22450]: (Runner) Created Activity ID: 0x35f51, Description: Loading Preferences From System CFPrefsD For Search List
[ +21 ms] [DEVICE LOG] 2018-07-11 15:05:30.889958-0700 localhost Runner[22450]: (Runner) Created Activity ID: 0x35f52, Description: Loading Preferences From System CFPrefsD For Search List
[ +7 ms] [DEVICE LOG] 2018-07-11 15:05:30.897806-0700 localhost Runner[22450]: (libAccessibility.dylib) [com.apple.Accessibility:AccessibilitySupport] Retrieving resting unlock: 0
[ +335 ms] [DEVICE LOG] 2018-07-11 15:05:31.232204-0700 localhost Runner[22450]: (UIKit) You've implemented -[<UIApplicationDelegate> application:performFetchWithCompletionHandler:], but you still need to add "fetch" to the list of your supported UIBackgroundModes in your Info.plist.
[ ] [DEVICE LOG] 2018-07-11 15:05:31.232416-0700 localhost Runner[22450]: (UIKit) You've implemented -[<UIApplicationDelegate> application:didReceiveRemoteNotification:fetchCompletionHandler:], but you still need to add "remote-notification" to the list of your supported UIBackgroundModes in your Info.plist.
[ +79 ms] [DEVICE LOG] 2018-07-11 15:05:31.313870-0700 localhost Runner[22450]: (Flutter) flutter: Observatory listening on http://127.0.0.1:8100/
[ +3 ms] Observatory URL on device: http://127.0.0.1:8100/
[ +5 ms] Connecting to service protocol: http://127.0.0.1:8100/
[ +204 ms] Successfully connected to service protocol: http://127.0.0.1:8100/
[ +3 ms] getVM: {}
[ +14 ms] getIsolate: {isolateId: isolates/799095208}
[ +5 ms] _flutter.listViews: {isolateId: isolates/799095208}
[ +103 ms] DevFS: Creating new filesystem on the device (null)
[ +1 ms] _createDevFS: {fsName: flutter_gallery}
[ +50 ms] DevFS: Created new filesystem on the device (file:///Users/efortuna/Library/Developer/CoreSimulator/Devices/DB25ADD2-E839-479A-8375-B1009FD4A6AF/data/Containers/Data/Application/28459308-A6B7-40DA-8EF6-7C02DC7E60F6/tmp/flutter_galleryRVQ65o/flutter_gallery/)
[ +1 ms] Updating assets
[ +696 ms] Syncing files to device iPhone X...
[ +3 ms] DevFS: Starting sync from LocalDirectory: '/Users/efortuna/flutter/examples/flutter_gallery'
[ ] Scanning project files
[ +17 ms] Scanning package files
[ +116 ms] Scanning asset files
[ +10 ms] Scanning for deleted files
[ +17 ms] Compiling dart to kernel with 547 updated files
[ +7 ms] /Users/efortuna/flutter/bin/cache/dart-sdk/bin/dart /Users/efortuna/flutter/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root /Users/efortuna/flutter/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --strong --target=flutter --output-dill build/app.dill --packages /Users/efortuna/flutter/examples/flutter_gallery/.packages --filesystem-scheme org-dartlang-root
[+2424 ms] Updating files
[+2348 ms] DevFS: Sync finished
[ ] Synced 41.9MB.
[ +1 ms] _flutter.listViews: {isolateId: isolates/799095208}
[ +5 ms] Connected to _flutterView/0x7ff1f7f0adc8.
[ ] 🔥 To hot reload changes while running, press "r". To hot restart (and rebuild state), press "R".
[ ] An Observatory debugger and profiler on iPhone X is available at: http://127.0.0.1:8100/
[ ] For a more detailed help message, press "h". To quit, press "q".
[+3563 ms] DevFS: Deleting filesystem on the device (file:///Users/efortuna/Library/Developer/CoreSimulator/Devices/DB25ADD2-E839-479A-8375-B1009FD4A6AF/data/Containers/Data/Application/28459308-A6B7-40DA-8EF6-7C02DC7E60F6/tmp/flutter_galleryRVQ65o/flutter_gallery/)
[ ] _deleteDevFS: {fsName: flutter_gallery}
[ +28 ms] DevFS: Deleted filesystem on the device (file:///Users/efortuna/Library/Developer/CoreSimulator/Devices/DB25ADD2-E839-479A-8375-B1009FD4A6AF/data/Containers/Data/Application/28459308-A6B7-40DA-8EF6-7C02DC7E60F6/tmp/flutter_galleryRVQ65o/flutter_gallery/)
[ +2 ms] ext.flutter.exit: {isolateId: isolates/799095208}
[ +37 ms] Service protocol connection closed.
[ +68 ms] Application finished.
[ +3 ms] "flutter run" took 31,218ms.
$ flutter analyze
Analyzing flutter_gallery...
No issues found! (ran in 27.5s)
$ flutter doctor -v
[✓] Flutter (Channel dev, v0.5.6, on Mac OS X 10.13.5 17F77, locale en-US)
• Flutter version 0.5.6 at /Users/efortuna/flutter
• Framework revision 472bbccf75 (2 weeks ago), 2018-06-26 17:01:46 -0700
• Engine revision 6fe748490d
• Dart version 2.0.0-dev.63.0.flutter-4c9689c1d2
[✓] Android toolchain - develop for Android devices (Android SDK 26.0.2)
• Android SDK at /Users/efortuna/Library/Android/sdk
• Android NDK location not configured (optional; useful for native profiling support)
• Platform android-27, build-tools 26.0.2
• Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
• All Android licenses accepted.
[✓] iOS toolchain - develop for iOS devices (Xcode 9.2)
• Xcode at /Applications/Xcode.app/Contents/Developer
• Xcode 9.2, Build version 9C40b
• ios-deploy 1.9.2
• CocoaPods version 1.5.3
[✓] Android Studio (version 3.0)
• Android Studio at /Applications/Android Studio.app/Contents
• Flutter plugin version 21.0.1
• Dart plugin version 171.4424
• Java version OpenJDK Runtime Environment (build 1.8.0_152-release-915-b08)
[✓] IntelliJ IDEA Community Edition (version 2018.1.2)
• IntelliJ at /Applications/IntelliJ IDEA CE.app
• Flutter plugin installed
• Dart plugin version 181.4668.60
[!] Connected devices
! No devices available
! Doctor found issues in 1 category.
| 0 |
The issue is a duplicate of scipy/scipy#4720
The document suggests that the parameter _degree of freedom_ should be `df >=
1` to use `numpy.random.noncentral_chisquare`. However, taking `df = 1` raises
error.
import numpy as np
df = 1
nc = 2
np.random.noncentral_chisquare(df, nc)
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-2-7c9f3f6a3a16> in <module>()
----> 1 np.random.noncentral_chisquare(df, nc)
mtrand.pyx in mtrand.RandomState.noncentral_chisquare (numpy/random/mtrand/mtrand.c:15618)()
ValueError: df <= 0
It makes me suspect that the random variate generation of the noncentral chi-
square distribution with degree of freedom `df` and noncentrality parameter
`nc` is implemented in numpy using a method similar to the following.
np.random.chisquare(df-1) + (np.random.standard_normal()+np.sqrt(nc))**2
However, this method is valid only for the case where `df > 1` because with
`df = 1`, it needs to generate a chi-square random variate with degree of
freedom 0, which is not mathematically well-defined.
On the other hand, noncentral chi-square distribution is indeed mathematically
well-defined for all `df > 0`. It simply requires a different algorithm for
random variate generation if `0 < df <= 1`, such as the following one:
np.random.chisquare(df + 2*np.random.poisson(nc / 2.0))
|
Numpy's bool_ type seems to fail an isinstance check with the Python
numbers.Integral ABC:
import numpy
import numbers
x = numpy.array([True])
print( isinstance(x[0],numbers.Integral) ) # -> False
I find this odd since Python's built-in bool passes:
print( isinstance(bool(x[0]),numbers.Integral) ) # ->True
Is this a bug?
My system information is:
PYTHON:
Python 2.7.5 (default, May 19 2013, 02:56:42)
[GCC 4.2.1 Compatible Apple LLVM 4.2 (clang-425.0.28)] on darwin
NUMPY INSTALLED WITH PIP:
Downloading/unpacking numpy from
https://pypi.python.org/packages/source/n/numpy/numpy-1.7.1.tar.gz#md5=0ab72b3b83528a7ae79c6df9042d61c6
Downloading numpy-1.7.1.tar.gz (2.8MB): 2.8MB downloaded
Running setup.py egg_info for package numpy
Running from numpy source directory.
non-existing path in 'numpy/distutils': 'site.cfg'
F2PY Version 2
blas_opt_info:
FOUND:
extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
define_macros = [('NO_ATLAS_INFO', 3)]
extra_compile_args = ['-msse3',
'-I/System/Library/Frameworks/vecLib.framework/Headers']
lapack_opt_info:
FOUND:
extra_link_args = ['-Wl,-framework', '-Wl,Accelerate']
define_macros = [('NO_ATLAS_INFO', 3)]
extra_compile_args = ['-msse3']
| 0 |
When I open Atom, after updating to v0.192.0, it launches 7 processes, one of
which runs this:
/usr/share/atom/atom --eval require('/usr/share/atom/resources/app/node_modules/coffee-cash/lib/coffee-cash.js').setCacheDirectory('/home/yajo/.atom/compile-cache/coffee');
require('/usr/share/atom/resources/app/node_modules/coffee-cash/lib/coffee-cash.js').register();
require('/usr/share/atom/resources/app/node_modules/coffeestack/index.js').setCacheDirectory('/home/yajo/.atom/compile-cache/coffee/source-maps');
require('/usr/share/atom/resources/app/src/task-bootstrap.js');
This process hangs my system eating all CPU and RAM available.
If I kill that process before it eats my computer, I can continue using Atom,
but obviously it's not very comfortable.
I use Fedora 21 with the official RPM package from atom.io.
|
When editing a file, after the editor was open for a little while, it started
to consume all the CPU and steadily consume more RAM (until all the available
RAM is consumed).
The command line of the runaway process was:
/usr/share/atom/atom --eval require('/usr/share/atom/resources/app/node_modules/coffee-cash/lib/coffee-cash.js').setCacheDirectory('/home/james/.atom/compile-cache/coffee'); require('/usr/share/atom/resources/app/node_modules/coffee-cash/lib/coffee-cash.js').register(); require('/usr/share/atom/resources/app/node_modules/coffeestack/index.js').setCacheDirectory('/home/james/.atom/compile-cache/coffee/source-maps'); require('/usr/share/atom/resources/app/src/task-bootstrap.js');
This behavior seems to have just emerged after I updated it to 0.192.0 this
morning.
| 1 |
Using Atom 0.183.0 on Windows 7 x64.
After atom updates, I become unable to double click files and have them open.
The command line still works fine.
To fix:
1. Open `regedit.exe`
2. Navigate to `HKEY_CLASSES_ROOT\Applications\atom.exe`
3. Right-click `(Default)`, click `Modify...`
4. Modify the text from `C:\Users\Michael\AppData\Local\atom\app-0.181.0\atom.exe` to `C:\Users\Michael\AppData\Local\atom\app-0.183.0\atom.exe`
5. Close `regedit.exe`
6. Close and reopen `explorer.exe`
7. Double clicking files works again!
Could this registry item be updated when atom is updated?
|
Currently it is not so easy to assign atom as default editor on windows eg for
all .css files
the path to atom.exe is changed with every update.
no exe in C:\Users\hebbet\AppData\Local\atom

Chrome has eg an chrome.exe in:
C:\Users\username\AppData\Local\Google\Chrome SxS\Application which starts
chrome with the currect folder.

| 1 |
**I'm submitting a ...** (check one with "x")
[x ] bug report
[ ] feature request
[ ] support request => Please do not submit support request here, instead see https://github.com/angular/angular/blob/master/CONTRIBUTING.md#question
**Current behavior**
Making a GET request with no body results in an exception of "Cannot read
property 'toString' of null".
It seems in the commit `e7a8e27` the text function now doesn't do the
`isPresent(this._body)` `e7a8e27`#diff-c9b22b9d241f7ed55d13b39d1ccb333bL109
check causing the failure
It now falls through to here
`e7a8e27`#diff-1239ed5b0c3fa3d870cb4005226ed5d6R56 when null causing the
error.
**Expected/desired behavior**
Should be able to send a HTTP GET request with no request body.
**Reproduction of the problem**
So far, making a HTTP get request with an empty body reproduces the issue.
**What is the expected behavior?**
Should be able to send a HTTP GET request with no request body.
* **Angular version:** 2.0.0-rc.5
* **Browser:** Tested on [Chrome 52 | Safari 9.1 ]
* **Language:** [TypeScript 1.8.10]
|
Has it been considered exposing the typings for the `angular2/test_lib`
module? Maybe even have it as top level module? Because I use some of the
exposed methods in unit tests for the components I write, and I think that
might be the case for many others, unless there is a plan for some other lib
for unit tests.
| 0 |
**Context:**
* Playwright Version: 1.30.0
* OS: macOS 13.0.1
* Memory: 216.70 MB / 16.00 GB
* Node: 18.13.0 - ~/.nix-profile/bin/node
* Yarn: 1.22.19 - ~/.nix-profile/bin/yarn
* npm: 8.19.3 - ~/.nix-profile/bin/npm
* Bash: 3.2.57 - /bin/bash
**Code Snippet**
Help us help you! Put down a short code snippet that illustrates your bug and
that we can run and debug locally. For example:
const getPort = (await import("get-port")).default;
**Describe the bug**
I'm trying to import an ES module without converting everything to ESM. This
is possible by using a dynamic import, as TS helpfully points outs when I'm
trying to run the test. But it doesn't work, because I'm assuming the default
TS config doesn't have `module: nodenext`.
The docs tell me that adding a `tsconfig.json` won't help as Playwright only
cares about `paths` and `basePath` options. Is there a way to support
importing ES modules non-invasively, or should I consider manually compiling
the tests? (This affect a lot of packages since many npm package maintainers
switched to supporting only ESM.)
|
**Context:**
* Playwright Version: 1.25.1
* Operating System: MacOs
* Node.js version: v16.17.0
**Code Snippet**
import { test } from "@playwright/test";
test("dynamic import of ESM", async ({}) => {
const { default: getPort } = await import("get-port");
console.log(await getPort());
});
**Describe the bug**
From the node.js docs
> Dynamic import() is supported in both CommonJS and ES modules. In CommonJS
> modules it can be used to load ES modules.
Yet, trying to load an ESM only package like `get-port` with a dynamic import
statement fails with the error:
Error [ERR_REQUIRE_ESM]: require() of ES Module .../node_modules/get-port/index.js from .../tests/example.spec.ts not supported.
Instead change the require of index.js in .../tests/example.spec.ts to a dynamic import() which is available in all CommonJS modules.
It's complaining I'm trying to use `require` to load an ESM only module, but
as can be seen in the snippet, it's an `import()`.
| 1 |
**Wojciech Durczyński** opened **SPR-5156** and commented
In OSGI `@Configurable` mechanism works well only when used in one bundle.
If there is <context:spring-configured /> in application contexts of more then
one bundle, the AnnotationBeanConfigurerAspect (single instance) is injected
with two different BeanConfigurerSupport objects in non deterministic order.
Bundle whose BeanFactory is injected to aspect most recently works well -
others don't work at all.
Is there any work around for this problem?
* * *
**Affects:** 2.5.5
**Issue Links:**
* #10074 AnnotationBeanConfigurerAspect is created as a singleton and cannot be shared across multiple contexts ( _ **"duplicates"**_ )
* #10074 AnnotationBeanConfigurerAspect is created as a singleton and cannot be shared across multiple contexts ( _ **"is duplicated by"**_ )
15 votes, 20 watchers
|
**Robert Binna** opened **SPR-9296** and commented
In version 3.1.1 of the springframework, the creation of the application
context and the lookup of beans by type, in particular the lookup of prototype
beans is extremely slow (factor 10).
The same creation and lookup process in spring 3.0.6 was significantly faster.
The definition of the application context is done through java based bean
configuration.
Therefore we created a sample programm which can be used to reproduce the
problem (program together with a gradle build file is attached, `gradle run`
executes the test).
This application uses javasssist to create 100 bean classes. Each bean class
has 5 autowired bean properties. The bean properties are generated, such that
no cyclic dependencies occur. Finally a configuration class containing the
generated beans is constructed and loaded. All beans are created as singletons
except one bean which has been created as prototype scope.
After the application context is loaded a single bean is looked up from the
application context 100 times. In the first case this is done with a bean of
scope singleton. In the second case this is done with a bean of scope
prototype.
The same tests was issued on spring 3.1.1 and spring 3.0.6
The results are as follows:
==== Spring 3.1.1 ====
SingletonBean:
* * *
StopWatch 'SpringPerformanceTest': running time (millis) = 17004;
[settingUpApplicationContext] took 15177 = 89%; [retrievingBeans] took 1827 =
11%
PrototypeBean:
* * *
StopWatch 'SpringPerformanceTest': running time (millis) = 24400;
[settingUpApplicationContext] took 13126 = 54%; [retrievingBeans] took 11274 =
46%
==== Spring 3.0.6 ====
SingletonBean:
* * *
StopWatch 'SpringPerformanceTest': running time (millis) = 3110;
[settingUpApplicationContext] took 2654 = 85%; [retrievingBeans] took 456 =
15%
PrototypeBean:
* * *
StopWatch 'SpringPerformanceTest': running time (millis) = 3163;
[settingUpApplicationContext] took 1790 = 57%; [retrievingBeans] took 1373 =
43%
* * *
**Affects:** 3.1.1
**Attachments:**
* benchmark.zip ( _3.84 kB_ )
**Issue Links:**
* #11536 Cache by-type lookups in DefaultListableBeanFactory ( _ **"duplicates"**_ )
1 votes, 3 watchers
| 0 |
**Apache Airflow version** : 1.10.15 with postgres db in docker container
**Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
NA
**Environment** : DEV
* **Cloud provider or hardware configuration** :
* **OS** (e.g. from /etc/os-release): MacOS 10.15.7
* **Kernel** (e.g. `uname -a`): Darwin Kernel
* **Install tools** :
* **Others** :
**What happened** : Running `airflow upgrade_check` returns the following
error:
Traceback (most recent call last):
File "/Users/abagri/Workspace/service-workflows/venv/bin/airflow", line 37, in <module>
args.func(args)
File "/Users/abagri/Workspace/service-workflows/venv/lib/python3.7/site-packages/airflow/upgrade/checker.py", line 118, in run
all_problems = check_upgrade(formatter, rules)
File "/Users/abagri/Workspace/service-workflows/venv/lib/python3.7/site-packages/airflow/upgrade/checker.py", line 38, in check_upgrade
rule_status = RuleStatus.from_rule(rule)
File "/Users/abagri/Workspace/service-workflows/venv/lib/python3.7/site-packages/airflow/upgrade/problem.py", line 44, in from_rule
result = rule.check()
File "/Users/abagri/Workspace/service-workflows/venv/lib/python3.7/site-packages/airflow/utils/db.py", line 74, in wrapper
return func(*args, **kwargs)
File "/Users/abagri/Workspace/service-workflows/venv/lib/python3.7/site-packages/airflow/upgrade/rules/postgres_mysql_sqlite_version_upgrade_check.py", line 50, in check
installed_postgres_version = Version(session.execute('SHOW server_version;').scalar())
File "/Users/abagri/Workspace/service-workflows/venv/lib/python3.7/site-packages/packaging/version.py", line 298, in __init__
raise InvalidVersion("Invalid version: '{0}'".format(version))
packaging.version.InvalidVersion: Invalid version: '12.3 (Debian 12.3-1.pgdg100+1)'
**What you expected to happen** : commands runs through and prints helpful
messages
Running `'SHOW server_version;` against the postgres db returns "12.3 (Debian
12.3-1.pgdg100+1)"' which is possibly not a valid value for Version class
**init** function because of the `(Debian 12.3-1.pgdg100+1)` ending?
**How to reproduce it** : Run airflow upgrade_check again.
**Anything else we need to know** :
|
**Description**
Currently, the PostgresOperator defines the database hook in a fixed way:
`self.hook = PostgresHook(postgres_conn_id=self.postgres_conn_id,
schema=self.database)`
This makes the operator inflexible for certain tech stacks. For example, long
queries in Redshift will sometimes fail (in my experience) with
`psycopg2.operationalerror: SSL SYSCALL error: EOF detected` because the hook
timed out on the Redshift side of things. The workaround (described in this
StackExchange post) that worked for me is to specify some additional arguments
in the Hook (see below) and then write my own custom operator.
PostgresHook(
postgres_conn_id=postgres_conn_id,
extra={
"keepalives": 1,
"keepalives_idle": 30,
"keepalives_interval": 5,
"keepalives_count": 5,
}
)
Now I don't think the default implementation of the PostgresOperator should
have these extra parameters, I just think it should be modified to be more
flexible so that users can pass arguments to the hook as well. My proposed
solution (and I will open a PR after some community input on this solution)
would be either
OPTION 1: (User-specified hook)
def __init__(
self,
*,
sql: str,
postgres_conn_id: str = 'postgres_default',
autocommit: bool = False,
parameters: Optional[Union[Mapping, Iterable]] = None,
database: Optional[str] = None,
hook = PostgresHook(postgres_conn_id=self.postgres_conn_id, schema=self.database),
**kwargs,
) -> None:
super().__init__(**kwargs)
self.sql = sql
self.postgres_conn_id = postgres_conn_id
self.autocommit = autocommit
self.parameters = parameters
self.database = database
self.hook = hook
def execute(self, context):
self.log.info('Executing: %s', self.sql)
self.hook.run(self.sql, self.autocommit, parameters=self.parameters)
for output in self.hook.conn.notices:
self.log.info(output)
OPTION 2: (Pass extra params to hook)
def __init__(
self,
*,
sql: str,
postgres_conn_id: str = 'postgres_default',
autocommit: bool = False,
parameters: Optional[Union[Mapping, Iterable]] = None,
database: Optional[str] = None,
**kwargs,
) -> None:
super().__init__(**kwargs)
self.sql = sql
self.postgres_conn_id = postgres_conn_id
self.autocommit = autocommit
self.parameters = parameters
self.database = database
self.extra = kwargs.pop("extra", None)
self.hook = None
def execute(self, context):
self.log.info('Executing: %s', self.sql)
self.hook = PostgresHook(
postgres_conn_id=self.postgres_conn_id,
schema=self.database,
extra=self.extra
)
self.hook.run(self.sql, self.autocommit, parameters=self.parameters)
for output in self.hook.conn.notices:
self.log.info(output)
I slightly favor Option 2 because I don't think one should be using the
PostgresOperator with a hook other than the PostgresHook, so really all we
want is for users to be able to pass the named parameters through.
**Use case / motivation**
This feature will make the PostgresOperator more flexible, allowing users to
pass more arguments to the PostgresHook to make better use of its features.
**Are you willing to submit a PR?**
Yes, I would be happy to submit a PR.
**Related Issues**
I couldn't find a related issue, but those more familiar with the project
might identify this as a duplicate and I would be happy to delete if that is
the case.
| 0 |
master but also present on 1.5.3
imshow(rand(5, 5)); gca().set_xticklabels(["foo", "bar"])
results in

Almost certain this is due to the xticks internally including a tick at the
position "just left of bounds". Seems related (not directly, though) to the
issue discussed in #7042.
|
Tested on matplotib 1.5.1 on OSX, pip installation. Not sure about regression
but I never noticed this behavior before.
**Expected behavior** :
plt.figure(figsize=(6, 4))
ax = plt.subplot(1, 1, 1)
ax.set_xlim(0, 2)
plt.show()

**Bad** : Extends the x limit for unknown reason
majors = ["0", "1", "2"]
plt.figure(figsize=(6, 4))
ax = plt.subplot(1, 1, 1)
ax.xaxis.set_major_formatter(ticker.FixedFormatter(majors))
ax.set_xlim(0, 2)
plt.show()

**Bad** : First item is not displayed
majors = ["0", "1", "2"]
plt.figure(figsize=(6, 4))
ax = plt.subplot(1, 1, 1)
ax.xaxis.set_major_locator(ticker.MultipleLocator(1.0))
ax.xaxis.set_major_formatter(ticker.FixedFormatter(majors))
ax.set_xlim(0, 2)
plt.show()

| 1 |
When updating from `v3.0.3` to `v3.0.4` the version gets updated to
`v3.0.4-DEV`.

This issue also has been reported by Loïc Vernet on the release page for
`v3.0.4`: symfony.com: Symfony 3.0.4 released.
|
After upgrading Symfony to version 3.0.4 I see "3.0.4-DEV" instead of "3.0.4"
as version in console and debug toolbar. Would you be so kind to fix this
issue?
Thank you.
| 1 |
Can not import css after upgrading to v5
//next.config.js
const withCSS = require('@zeit/next-css')
module.exports = withCSS()
//pages/test.js
import React from 'react';
import './test.css';
export default () => <div className="test">Hello World!</div>;
/*pages/test.css*/
.test{background-color: red;}
* I have searched the issues of this repository and believe that this is not a duplicate.
## Expected Behavior
Have a box with red background
## Current Behavior
Seeing this error:
ERROR in ./pages/test.css
Module build failed: ValidationError: Style Loader Invalid Options
options['importLoaders'] should NOT have additional properties
@ ./pages/test.js 10:0-20
@ multi ./pages/test.js
## Context
I don't have `.babelrc` and `postcss.config.js` in my local and trying to
import css
## Your Environment
Tech | Version
---|---
next | 5
node | 9.5
OS | macOS 10.12.6
browser | chrome Version 64.0.3282.140

|
# Bug report
Discussed with @timneutkens on Slack.
## Describe the bug
After a change I am not seeing server SSR reflect the change.
The server bundle is being rebuilt properly, but its serving stale pages.
| 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.