Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

0.63 upgrade results in a bundle that never finishes building #29351

Closed
djMax opened this issue Jul 13, 2020 · 53 comments
Closed

0.63 upgrade results in a bundle that never finishes building #29351

djMax opened this issue Jul 13, 2020 · 53 comments
Labels
Needs: Triage 🔍 Stale There has been a lack of activity on this issue and it may be closed soon. Tech: Bundler 📦 This issue is related to the bundler (Metro, Haul, etc) used.

Comments

@djMax
Copy link

djMax commented Jul 13, 2020

Please provide all the information requested. Issues that do not follow this format are likely to stall.

Description

I can no longer build a react bundle, it gets to "Done copying assets" and then never finishes.

React Native version:

info Fetching system and libraries information...
System:
    OS: macOS 10.15.5
    CPU: (16) x64 Intel(R) Core(TM) i9-9880H CPU @ 2.30GHz
    Memory: 813.83 MB / 32.00 GB
    Shell: 5.7.1 - /bin/zsh
  Binaries:
    Node: 12.17.0 - ~/.nvm/versions/node/v12.17.0/bin/node
    Yarn: 1.22.4 - /usr/local/bin/yarn
    npm: 6.14.4 - ~/.nvm/versions/node/v12.17.0/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  Managers:
    CocoaPods: 1.9.3 - /usr/local/bin/pod
  SDKs:
    iOS SDK:
      Platforms: iOS 13.5, DriverKit 19.0, macOS 10.15, tvOS 13.4, watchOS 6.2
    Android SDK:
      API Levels: 28, 29
      Build Tools: 28.0.3, 29.0.2, 29.0.3, 30.0.0
      System Images: android-29 | Google Play Intel x86 Atom
      Android NDK: Not Found
  IDEs:
    Android Studio: 4.0 AI-193.6911.18.40.6514223
    Xcode: 11.5/11E608c - /usr/bin/xcodebuild
  Languages:
    Java: 1.8.0_231 - /usr/bin/javac
    Python: 2.7.16 - /usr/bin/python
  npmPackages:
    @react-native-community/cli: Not Found
    react: Not Found
    react-native: 0.63.0 => 0.63.0
  npmGlobalPackages:
    *react-native*: Not Found

Steps To Reproduce

I'm not sure I can reliably repro this, so I probably need some steps that might yield more data. But I run this:

npx react-native bundle --platform ios --entry-file index.js --dev false --bundle-output ./ios/main.jsbundle --assets-dest ./ios --sourcemap-output ./sourcemap.js

Also, in case it's relevant, I have a monorepo setup with yarn workspaces and lerna.

Expected Results

A bundle should be produced in something less than an hour, which is how long I waited...

@react-native-bot react-native-bot added the Tech: Bundler 📦 This issue is related to the bundler (Metro, Haul, etc) used. label Jul 13, 2020
@djMax
Copy link
Author

djMax commented Jul 13, 2020

A little more info - this has something to do with a custom metro transformer I have written to do localization. Even if I reduce it to this:

const upstreamTransformer = require('metro-react-native-babel-transformer');

module.exports.transform = function transform({ src, filename, options }) {
  return upstreamTransformer.transform({ src, filename, options });
};

It will hang.

@voidrender
Copy link

voidrender commented Jul 13, 2020

I'm also facing issues with the bundler on 0.63 in two projects, but it might be a slightly different issue because I'm promptly getting errors while bundling for release. One is a yarn workspaces / Lerna monorepo, but the other is not. Both use babel-plugin-module-resolver to resolve modules using shortened absolute paths. The release notes don't seem to have much in the way of bundler changes, but the same config bundles just fine on 0.62.2. Has anyone come across any changes relevant to bundling in 0.63.0?

The closest I've found to what I'm experiencing is being discussed in this StackOverflow question, in case any of this is useful for you.

@sharifhh
Copy link

Change your babel.config.js to .babelrc.js and it will work

@typester
Copy link

I have the same issue to @ioveracker's, not sure it's the same as the original issue of this thread though.

With 0.63 and babel-plugin-module-resolver, it seems that jsbundle won't created from ./ios directory (where Xcode execute react-native scripts). It works on root directory of the react-native project though.

So I did a temporary quick fix to add cd $PROJECT_DIR/.. before the "$NODE_BINARY" $NODE_ARGS "$CLI_PATH" $BUNDLE_COMMAND \ line on node_modules/react-native/scripts/react-native-xcode.sh

I don't know why this is happened, and hope will fix soon!

@voidrender
Copy link

@typester good call! That works! 🎉 To be clear, in my case, rather than patch node_modules/react-native/scripts/react-native-xcode.sh, I added cd $PROJECT_DIR/.. to the first line of the Bundle React Native code and images Build Phase in Xcode. I.e.:

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

@makarkotlov
Copy link

I'm also facing issues with the bundler on 0.63 in two projects, but it might be a slightly different issue because I'm promptly getting errors while bundling for release. One is a yarn workspaces / Lerna monorepo, but the other is not. Both use babel-plugin-module-resolver to resolve modules using shortened absolute paths. The release notes don't seem to have much in the way of bundler changes, but the same config bundles just fine on 0.62.2. Has anyone come across any changes relevant to bundling in 0.63.0?

The closest I've found to what I'm experiencing is being discussed in this StackOverflow question, in case any of this is useful for you.

same, in my case bundler can't resolve files with absolute path, but it works on 0.62.2, weird

@SimoneCarnio
Copy link

I'm also using babel-plugin-module-resolver and I fixed this issue by removing from my .bablerc.js this line:

cwd: 'babelrc',

@todorone
Copy link

Unfortunately, cd $PROJECT_DIR/.. doesn't work with SENTRY setup as it has own script layer over react-native-xcode.sh... 😿

@deserthurricane
Copy link

I have this issue while archiving app in XCode for distribution to AppStore. When I'm in debug mode - everything works fine.
For me the solution of @ioveracker worked for the archive build, but I'm looking forward to a new patch release of RN to fix this issue.

@maxvw
Copy link

maxvw commented Jul 16, 2020

Unfortunately, cd $PROJECT_DIR/.. doesn't work with SENTRY setup as it has own script layer over react-native-xcode.sh... 😿

@todorone This version worked for us with Sentry using the workaround @typester previously mentioned;

cd $PROJECT_DIR/..
export SENTRY_PROPERTIES=ios/sentry.properties
export NODE_BINARY=$(which node)
./node_modules/@sentry/cli/bin/sentry-cli react-native xcode ./node_modules/react-native/scripts/react-native-xcode.sh

@ghost
Copy link

ghost commented Jul 21, 2020

I confirm that @typester suggestion works but there are plans for a definitive fix?

@lorenzoangelini
Copy link

@maxvw I tried your solution but i have the following error:
error: An organization slug is required (provide with --org)
Add --log-level=[info|debug] or export SENTRY_LOG_LEVEL=[info|debug] to see more output.
Please attach the full debug log to all bug reports.
** ARCHIVE FAILED **
The following build commands failed:
PhaseScriptExecution Bundle\ React\ Native\ code\ and\ images /Users/runner/Library/Developer/Xcode/DerivedData/appname-ffzaoljnipttnvctkayyjbwaowdo/Build/Intermediates.noindex/ArchiveIntermediates/liberyRelease/IntermediateBuildFilesPath/libery.build/Release-iphoneos/appName.build/Script-00DD1BFF1BD5951E006B06BC.sh

in Build Phase Bundle React Native code and images i have this:
cd $PROJECT_DIR/..
export SENTRY_PROPERTIES=sentry.properties
export EXTRA_PACKAGER_ARGS="--sourcemap-output $DERIVED_FILE_DIR/main.jsbundle.map"
export BUNDLE_COMMAND="ram-bundle"
export NODE_BINARY=node
./node_modules/@sentry/cli/bin/sentry-cli react-native xcode ./node_modules/react-native/scripts/react-native-xcode.sh
Screenshot 2020-07-21 at 19 40 19

@maxvw
Copy link

maxvw commented Jul 21, 2020

@maxvw I tried your solution but i have the following error:
error: An organization slug is required (provide with --org)
Add --log-level=[info|debug] or export SENTRY_LOG_LEVEL=[info|debug] to see more output.

Make sure export SENTRY_PROPERTIES=sentry.properties is pointing to the correct file, in my example this file exists inside the ios/ directory so the value for this environment variable is ios/sentry.properties

@lorenzoangelini
Copy link

@maxvw Thank you very much, your suggestion resolved my issue.
However I hope that this issue will be fixed in the next release

@rnnyrk
Copy link

rnnyrk commented Sep 1, 2020

Still having this issue. Changing the code to:

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

Doesn't seem to work. Anyone with another solution? 🤔

Edit:

Okay I've resolved the issue by index.ts after my xcode script line. Since I'm using Typscript I've found the script initially looks for a .js file instead of my .ts file

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh index.ts

@voidrender
Copy link

@rnnyrk oof, that must have been fun to track down.

Heads up: the React Native docs on using TypeScript recommend leaving index.js as .js.

You should leave the ./index.js entrypoint file as it is otherwise you may run into an issue when it comes to bundling a production build.

I don't know if there will be other problems beyond bundling, but thought I'd toss that out there. 🤷‍♂️

@rnnyrk
Copy link

rnnyrk commented Sep 1, 2020

@ioveracker Thanks for the heads up about this one. I dind't know about it and never ran into the docs page. Will revert since it, indeed, doesn't add any value to make the index file ts

@aprilmintacpineda
Copy link

@typester good call! That works! 🎉 To be clear, in my case, rather than patch node_modules/react-native/scripts/react-native-xcode.sh, I added cd $PROJECT_DIR/.. to the first line of the Bundle React Native code and images Build Phase in Xcode. I.e.:

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

this worked perfectly.

@vrgimael
Copy link

None of the above fixed it for me on 0.63, but it works with this PR #29477

@pierre-lucas40
Copy link

This fixes the issue for people that do NOT use a monorepo, it basically reverts the monorepo functionality.

For the users that ARE using a monorepo this is a quick fix:

  • update to 0.63.3 and edit line 63 in the node_modules/react-native/scripts/react-native-xcode.sh
    PROJECT_ROOT=${PROJECT_ROOT:-"$REACT_NATIVE_DIR/../.."} to PROJECT_ROOT=${PROJECT_ROOT:-"$REACT_NATIVE_DIR/../../<path_to_your_react_native_root>"}
  • Edit the Bundle React Native code and images build phase to the correct relative path of the sh script. node_modules/react-native/scripts/react-native-xcode.sh For example for me it was three parents:
export NODE_BINARY=node
../../../node_modules/react-native/scripts/react-native-xcode.sh

OR

  • stay on 0.63.2

I agree, this is not a nice fix, and I strongly suggest that the monorepo support should be added back in some way. For me because of the ^ in my package.json it automatically updated, and I had to put in several hours to figure out that this was the actual issue.

Or you can change the 'Bundle React Native code and images' with
export NODE_BINARY=node\n PROJECT_ROOT=$PROJECT_DIR/.. ../../../node_modules/react-native/scripts/react-native-xcode.sh

@surajprasad13
Copy link

es/OpenSSL -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall -std=c++14 -Wno-global-constructors -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/Log.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/Log.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/Log.cpp -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/Log.o

CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperStep.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperStep.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Flipper' from project 'Pods')
cd /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios8.0-simulator -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++14 -stdlib=libc++ -fmodules -fmodules-cache-path=/Users/sahilsorot/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/sahilsorot/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 -Wdocumentation -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -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 -Wno-newline-eof -Wno-c++11-extensions -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Index/DataStore -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper/include -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Folly -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Glog -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/libevent -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/boost-for-react-native -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-DoubleConversion -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources-normal/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper -F/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall -std=c++14 -Wno-global-constructors -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperStep.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperStep.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperStep.cpp -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperStep.o

CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperState.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperState.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Flipper' from project 'Pods')
cd /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios8.0-simulator -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++14 -stdlib=libc++ -fmodules -fmodules-cache-path=/Users/sahilsorot/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/sahilsorot/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 -Wdocumentation -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -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 -Wno-newline-eof -Wno-c++11-extensions -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Index/DataStore -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper/include -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Folly -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Glog -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/libevent -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/boost-for-react-native -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-DoubleConversion -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources-normal/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper -F/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall -std=c++14 -Wno-global-constructors -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperState.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperState.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperState.cpp -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperState.o

CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperRSocketResponder.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Flipper' from project 'Pods')
cd /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios8.0-simulator -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++14 -stdlib=libc++ -fmodules -fmodules-cache-path=/Users/sahilsorot/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/sahilsorot/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 -Wdocumentation -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -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 -Wno-newline-eof -Wno-c++11-extensions -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Index/DataStore -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper/include -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Folly -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Glog -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/libevent -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/boost-for-react-native -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-DoubleConversion -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources-normal/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper -F/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall -std=c++14 -Wno-global-constructors -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperRSocketResponder.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperRSocketResponder.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperRSocketResponder.o
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.h:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-RSocket/rsocket/RSocketResponder.h:17:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-RSocket/rsocket/Payload.h:17:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/IOBuf.h:30:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/FBString.h:1789:72: warning: possible misuse of comma operator here [-Wcomma]
"basic_fbstring: null pointer initializer not valid"),
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/FBString.h:1788:15: note: cast expression to void to silence warning
: (throw_exceptionstd::logic_error(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
static_cast(
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.h:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-RSocket/rsocket/RSocketResponder.h:17:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-RSocket/rsocket/Payload.h:17:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/IOBuf.h:31:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/FBVector.h:40:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:52: warning: possible misuse of comma operator here [-Wcomma]
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:34: note: cast expression to void to silence warning
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^~~~~~~~~~~~~~~~~~
static_cast()
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.h:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-RSocket/rsocket/RSocketResponder.h:19:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper-RSocket/yarpl/Flowable.h:18:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-RSocket/yarpl/flowable/Flowable.h:19:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/HHWheelTimer.h:20:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/AsyncTimeout.h:19:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBaseBackendBase.h:21:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventUtil.h:21:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/portability/Event.h:24:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/libevent/event.h:44:10: fatal error: 'event2/event-config.h' file not found
#include <event2/event-config.h>
^~~~~~~~~~~~~~~~~~~~~~~
2 warnings and 1 error generated.

CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperConnectionManagerImpl.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Flipper' from project 'Pods')
cd /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios8.0-simulator -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++14 -stdlib=libc++ -fmodules -fmodules-cache-path=/Users/sahilsorot/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/sahilsorot/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 -Wdocumentation -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -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 -Wno-newline-eof -Wno-c++11-extensions -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Index/DataStore -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper/include -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Folly -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Glog -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/libevent -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/boost-for-react-native -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-DoubleConversion -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources-normal/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper -F/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall -std=c++14 -Wno-global-constructors -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperConnectionManagerImpl.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperConnectionManagerImpl.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperConnectionManagerImpl.o
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.h:11:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBase.h:39:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:52: warning: possible misuse of comma operator here [-Wcomma]
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:34: note: cast expression to void to silence warning
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^~~~~~~~~~~~~~~~~~
static_cast()
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.h:11:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBase.h:40:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Synchronized.h:32:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/SharedMutex.h:29:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/concurrency/CacheLocality.h:33:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:30: warning: possible misuse of comma operator here [-Wcomma]
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:21: note: cast expression to void to silence warning
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.h:11:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBase.h:20:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cerrno:26:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/errno.h:31:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/errno.h:23:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/sys/errno.h:81:15: note: expanded from macro 'errno'
#define errno (__error())
^
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.h:11:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBase.h:40:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Synchronized.h:32:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/SharedMutex.h:29:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/concurrency/CacheLocality.h:33:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:50: warning: possible misuse of comma operator here [-Wcomma]
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:40: note: cast expression to void to silence warning
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^~~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.h:11:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBase.h:20:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cerrno:26:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/errno.h:31:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/errno.h:23:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/sys/errno.h:81:15: note: expanded from macro 'errno'
#define errno (
__error())
^
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionManagerImpl.h:11:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBase.h:46:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/AsyncTimeout.h:19:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventBaseBackendBase.h:21:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/io/async/EventUtil.h:21:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/portability/Event.h:24:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/libevent/event.h:44:10: fatal error: 'event2/event-config.h' file not found
#include <event2/event-config.h>
^~~~~~~~~~~~~~~~~~~~~~~

CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperClient.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Flipper' from project 'Pods')
cd /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios8.0-simulator -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++14 -stdlib=libc++ -fmodules -fmodules-cache-path=/Users/sahilsorot/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/sahilsorot/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 -Wdocumentation -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -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 -Wno-newline-eof -Wno-c++11-extensions -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Index/DataStore -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper/include -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Folly -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Glog -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/libevent -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/boost-for-react-native -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-DoubleConversion -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources-normal/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper -F/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall -std=c++14 -Wno-global-constructors -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperClient.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperClient.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperClient.o
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:14:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionImpl.h:12:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnection.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/json.h:48:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:68:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/F14Map.h:41:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Policy.h:23:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:30: warning: possible misuse of comma operator here [-Wcomma]
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:21: note: cast expression to void to silence warning
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/mutex:190:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base:15:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error:145:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__errc:104:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cerrno:26:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/errno.h:31:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/errno.h:23:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/sys/errno.h:81:15: note: expanded from macro 'errno'
#define errno (__error())
^
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:14:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionImpl.h:12:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnection.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/json.h:48:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:68:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/F14Map.h:41:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Policy.h:23:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:50: warning: possible misuse of comma operator here [-Wcomma]
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:40: note: cast expression to void to silence warning
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^~~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:11:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/mutex:190:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base:15:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error:145:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__errc:104:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cerrno:26:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/errno.h:31:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/errno.h:23:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/sys/errno.h:81:15: note: expanded from macro 'errno'
#define errno (
__error())
^
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:14:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionImpl.h:12:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnection.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/json.h:48:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:68:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/F14Map.h:41:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Policy.h:28:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Table.h:40:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:52: warning: possible misuse of comma operator here [-Wcomma]
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:34: note: cast expression to void to silence warning
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^~~~~~~~~~~~~~~~~~
static_cast()
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:14:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionImpl.h:12:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnection.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/json.h:48:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:796:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic-inl.h:22:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Conv.h:116:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Demangle.h:19:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/FBString.h:1789:72: warning: possible misuse of comma operator here [-Wcomma]
"basic_fbstring: null pointer initializer not valid"),
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/FBString.h:1788:15: note: cast expression to void to silence warning
: (throw_exceptionstd::logic_error(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
static_cast(
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:14:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionImpl.h:12:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnection.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/json.h:48:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:796:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic-inl.h:22:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Conv.h:1266:44: warning: possible misuse of comma operator here [-Wcomma]
[&](Tgt res) { return void(out = res), src; });
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Conv.h:1266:29: note: cast expression to void to silence warning
[&](Tgt res) { return void(out = res), src; });
^~~~~~~~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperClient.h:14:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnectionImpl.h:12:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperConnection.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/json.h:48:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:796:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic-inl.h:23:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Format.h:30:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/String.h:73:18: warning: '\a' command does not have a valid word argument [-Wdocumentation]

  • ' " ? \ \a \b \f \n \r \t \v
    ~~^
    /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/String.h:73:21: warning: '\b' command does not have a valid word argument [-Wdocumentation]
  • ' " ? \ \a \b \f \n \r \t \v
    ~~^

CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/Flipper-dummy.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-dummy.m normal x86_64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'Flipper' from project 'Pods')
cd /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -target x86_64-apple-ios8.0-simulator -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=gnu11 -fobjc-arc -fobjc-weak -fmodules -fmodules-cache-path=/Users/sahilsorot/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/sahilsorot/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 -Wdocumentation -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 -Wimplicit-retain-self -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 -Wdeprecated-implementations -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -DOBJC_OLD_DISPATCH_PROTOTYPES=0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -g -Wno-sign-conversion -Winfinite-recursion -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wno-semicolon-before-method-body -Wunguarded-availability -fobjc-abi-version=2 -fobjc-legacy-dispatch -index-store-path /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Index/DataStore -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper/include -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Folly -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Glog -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/libevent -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/boost-for-react-native -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-DoubleConversion -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources-normal/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper -F/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/Flipper-dummy.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/Flipper-dummy.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-dummy.m -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/Flipper-dummy.o

CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/ConnectionContextStore.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler (in target 'Flipper' from project 'Pods')
cd /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods
export LANG=en_US.US-ASCII
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x c++ -target x86_64-apple-ios8.0-simulator -fmessage-length=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit=0 -std=c++14 -stdlib=libc++ -fmodules -fmodules-cache-path=/Users/sahilsorot/Library/Developer/Xcode/DerivedData/ModuleCache.noindex -fmodules-prune-interval=86400 -fmodules-prune-after=345600 -fbuild-session-file=/Users/sahilsorot/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 -Wdocumentation -Wunreachable-code -Werror=deprecated-objc-isa-usage -Werror=objc-root-class -Wno-non-virtual-dtor -Wno-overloaded-virtual -Wno-exit-time-destructors -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 -Wno-newline-eof -Wno-c++11-extensions -DPOD_CONFIGURATION_DEBUG=1 -DDEBUG=1 -DCOCOAPODS=1 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk -fasm-blocks -fstrict-aliasing -Wdeprecated-declarations -Winvalid-offsetof -g -Wno-sign-conversion -Winfinite-recursion -Wmove -Wcomma -Wblock-capture-autoreleasing -Wstrict-prototypes -Wrange-loop-analysis -Wno-semicolon-before-method-body -Wunguarded-availability -index-store-path /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Index/DataStore -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper/include -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Private/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-DoubleConversion -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Folly -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-Glog -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Headers/Public/libevent -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/boost-for-react-native -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-RSocket -I/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper-DoubleConversion -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources-normal/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources/x86_64 -I/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/DerivedSources -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/Flipper -F/Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/OpenSSL-Universal/Frameworks -F/Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Products/Debug-iphonesimulator/XCFrameworkIntermediates/OpenSSL -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall -std=c++14 -Wno-global-constructors -include /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Target\ Support\ Files/Flipper/Flipper-prefix.pch -MMD -MT dependencies -MF /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/ConnectionContextStore.d --serialize-diagnostics /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/ConnectionContextStore.dia -c /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp -o /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/ConnectionContextStore.o
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:68:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/F14Map.h:41:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Policy.h:23:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:30: warning: possible misuse of comma operator here [-Wcomma]
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:21: note: cast expression to void to silence warning
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:57:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream:138:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios:215:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale:17:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/mutex:190:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base:15:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error:145:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__errc:104:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cerrno:26:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/errno.h:31:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/errno.h:23:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/sys/errno.h:81:15: note: expanded from macro 'errno'
#define errno (__error())
^
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:68:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/F14Map.h:41:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Policy.h:23:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:50: warning: possible misuse of comma operator here [-Wcomma]
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Memory.h:67:40: note: cast expression to void to silence warning
return rc == 0 ? (errno = 0, ptr) : (errno = rc, nullptr);
^~~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:57:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ostream:138:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/ios:215:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__locale:17:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/mutex:190:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__mutex_base:15:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/system_error:145:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/__errc:104:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/cerrno:26:
In file included from /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/../include/c++/v1/errno.h:31:
In file included from /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/errno.h:23:
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator14.4.sdk/usr/include/sys/errno.h:81:15: note: expanded from macro 'errno'
#define errno (
__error())
^
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:68:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/F14Map.h:41:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Policy.h:28:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/container/detail/F14Table.h:40:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:52: warning: possible misuse of comma operator here [-Wcomma]
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/ScopeGuard.h:125:34: note: cast expression to void to silence warning
auto catcher = -> R { warnAboutToCrash(), std::terminate(); };
^~~~~~~~~~~~~~~~~~
static_cast()
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:796:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic-inl.h:22:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Conv.h:116:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Demangle.h:19:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/FBString.h:1789:72: warning: possible misuse of comma operator here [-Wcomma]
"basic_fbstring: null pointer initializer not valid"),
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/FBString.h:1788:15: note: cast expression to void to silence warning
: (throw_exceptionstd::logic_error(
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
static_cast(
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:796:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic-inl.h:22:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Conv.h:1266:44: warning: possible misuse of comma operator here [-Wcomma]
[&](Tgt res) { return void(out = res), src; });
^
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Conv.h:1266:29: note: cast expression to void to silence warning
[&](Tgt res) { return void(out = res), src; });
^~~~~~~~~~~~~~~
static_cast( )
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.cpp:8:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper/xplat/Flipper/ConnectionContextStore.h:10:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic.h:796:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/dynamic-inl.h:23:
In file included from /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/Format.h:30:
/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/String.h:73:18: warning: '\a' command does not have a valid word argument [-Wdocumentation]

  • ' " ? \ \a \b \f \n \r \t \v
    ~~^
    /Users/sahilsorot/Desktop/React Native/test/ios/Pods/Headers/Public/Flipper-Folly/folly/String.h:73:21: warning: '\b' command does not have a valid word argument [-Wdocumentation]
  • ' " ? \ \a \b \f \n \r \t \v
    ~~^

warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99. (in target 'boost-for-react-native' from project 'Pods')
warning: Capabilities for Signing & Capabilities may not function correctly because its entitlements use a placeholder team ID. To resolve this, select a development team in the test editor. (in target 'test' from project 'test')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99. (in target 'Flipper-DoubleConversion' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99. (in target 'YogaKit' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99. (in target 'Flipper-Glog' from project 'Pods')
warning: no rule to process file '/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper-RSocket/rsocket/benchmarks/CMakeLists.txt' of type 'text' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper-RSocket/rsocket/benchmarks/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: no rule to process file '/Users/sahilsorot/Desktop/React Native/test/ios/Pods/Flipper-RSocket/rsocket/README.md' of type 'net.daringfireball.markdown' for architecture 'x86_64' (in target 'Flipper-RSocket' from project 'Pods')
warning: The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.4.99. (in target 'Flipper' from project 'Pods')

** BUILD FAILED **

The following build commands failed:
CompileC /Users/sahilsorot/Library/Developer/Xcode/DerivedData/test-fncyocqpxetfylbadjrykhkriqkv/Build/Intermediates.noindex/Pods.build/Debug-iphonesimulator/Flipper.build/Objects-normal/x86_64/FlipperRSocketResponder.o /Users/sahilsorot/Desktop/React\ Native/test/ios/Pods/Flipper/xplat/Flipper/FlipperRSocketResponder.cpp normal x86_64 c++ com.apple.compilers.llvm.clang.1_0.compiler
(1 failure)

i am also facing same issue while i install a fresh project

@dezudas
Copy link

dezudas commented Feb 28, 2021

@typester good call! That works! 🎉 To be clear, in my case, rather than patch node_modules/react-native/scripts/react-native-xcode.sh, I added cd $PROJECT_DIR/.. to the first line of the Bundle React Native code and images Build Phase in Xcode. I.e.:

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

not working for me :(

@0x0a0d
Copy link

0x0a0d commented Mar 20, 2021

for anyone using RN 0.63.4 got this error.
Please try to kill your development server and try yarn start again
I have a screen with wrong import path but not get alert because I pull it from git
and when yarn start again, it failed to bundle main.js :)

@vadim312
Copy link

vadim312 commented Mar 25, 2021

@typester good call! That works! 🎉 To be clear, in my case, rather than patch node_modules/react-native/scripts/react-native-xcode.sh, I added cd $PROJECT_DIR/.. to the first line of the Bundle React Native code and images Build Phase in Xcode. I.e.:

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

My project is in rn0.63.4 and cocoapods v1.10.0, after I upgrade pod, it happened always and not fixed with above suggestion. If someone knows how to fix, very appreciate.
image

@lglam
Copy link

lglam commented May 24, 2021

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh index.ts

Thank you so much @rnnyrk .
In my project have file index.tsx I have to change the script index.ts to index.tsx.
It worked.

@Jackyaung
Copy link

@vadim312 have you solved the problem? I'm having the same problem.

@vforvasile
Copy link

I downgraded from Cocoapods 1.10.1 to 1.10.0 and this fixed it for me. (using RN 0.63.3)

To remove your current cocoapods version you could just run:
sudo gem uninstall cocoapods

you can install a specific version of cocoapods via the following command:

sudo gem install cocoapods -v 1.10.0

Used script in xCode:

export NODE_BINARY=$(which node)
../node_modules/@sentry/cli/bin/sentry-cli react-native xcode ../node_modules/react-native/scripts/react-native-xcode.sh

Hope this helps someone!

@elliottkember
Copy link
Contributor

Thank you all so much for contributing to this thread. I found that when using Sentry sourcemaps with this cd .. approach, the autogenerated sourcemaps had an unwanted path prefix and this didn't match up.

I was stuck on this minor annoyance for hours. Fortunately, upgrading to 0.63.4 fixed everything. If you're using module_resolver and React Native 0.63.2, I recommend updating.

@tonypangs
Copy link

@typester good call! That works! 🎉 To be clear, in my case, rather than patch node_modules/react-native/scripts/react-native-xcode.sh, I added cd $PROJECT_DIR/.. to the first line of the Bundle React Native code and images Build Phase in Xcode. I.e.:

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

My project is in rn0.63.4 and cocoapods v1.10.0, after I upgrade pod, it happened always and not fixed with above suggestion. If someone knows how to fix, very appreciate.
image

You can try my solution first, it might be an issue about node versioning
#32108 (comment)

@CyrusZei
Copy link

CyrusZei commented Sep 23, 2021

well, for anybody that got that error this is how I fixed it.

When you try to archive your app in xCode and you get a build error saying something like
main.jsbundle does not exist. This must be a bug with

if you start to look a couple of lines above you get this
error The resource '/some/path/here/index.js` was not found. Run CLI with --verbose flag for more details.

What that means is that it can't locate the index.jsfile and the path is wrong. Because if you look at that path that comes after the The resource the index.js files it not located in that path. So what you need to do is make sure that the path is the correct one to the index.js

here is the fix

xCode -> build Phases -> Bundle react native code and images

cd $PROJECT_DIR/..
export NODE_BINARY=node
../../node_modules/react-native/scripts/react-native-xcode.sh ./packages/mobile/index.js 

./packages/mobile/index.js this is the important part and make sure that you point it to the right path. To start with just do like this ./HERE/index.js and then you will see that it will point you to from the root/to/the/path/that/the/project/is/looking/for/the/HERE/index.js

After that it is just to add your own path and it will work

Image for reference

Screenshot 2021-09-24 at 00 41 16

@maxammann
Copy link

Might be related to an issue here: aeirola/react-native-svg-asset-plugin#73

@DmitryBD
Copy link

DmitryBD commented Jan 9, 2022

I was able to fix the bug by changing the project.pbxproj "Build Phases -> Bundle React Native code and images" to

export NODE_BINARY=node

# The project root by default is one level up from the ios directory
export PROJECT_ROOT="$PROJECT_DIR"/..

`node --print "require('path').dirname(require.resolve('react-native/package.json')) + '/scripts/react-native-xcode.sh'"`

I found this script when generating a new project with the expo. It should be updated but it seems missing in the documentation when upgrading to EXPO 43.

@so1ua
Copy link

so1ua commented Apr 21, 2022

Sorry wrong thread

@oleg-moseyko
Copy link

it helped for me
just changed --max-old-space-size from 16000 to 160000

Снимок экрана 2022-09-27 в 09 32 32

@jlump001
Copy link

jlump001 commented Oct 27, 2022

My issue was with export NODE_BINARY=node not recognizing the node from my PATH. Simply changing

NODE_BINARY=node to NODE_BINARY=/usr/local/bin/node (which is where my node is installed and can be found by running echo $NODE)

image

fixed the issue for me.

@b1n1yam
Copy link

b1n1yam commented Dec 3, 2022

As suggested on This answer

export PATH="$PATH:/opt/homebrew/bin" export NODE_BINARY=node ...

To build phases -> Bundle React Native code and images
Worked for me on React-native 0.63.4

@osmanemin
Copy link

This is my solution

main.jsbundle should appear in your ios folder.
npx react-native bundle --entry-file ./index.js --platform ios --bundle-output ios/main.jsbundle

add main.jsbundle to Copy Bundle Resources
Ekran Resmi 2023-01-09 20 39 37

then set your Bundle React Native code and images

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

Ekran Resmi 2023-01-09 20 42 15

@LauColombini
Copy link

LauColombini commented Jan 16, 2023

If you are using a shim.js I was able to solve it with this comment from a very good man <3 @DDushkin

@kokosky93
Copy link

it stopped working after cloning the project....... it works on the old one but runninng Archieve command is beeing tthrown the same exception...... Why?????

@hugoh59
Copy link

hugoh59 commented May 4, 2023

Adding the main.jsbundle file to the copy bundle ressource folder did the trick for me as well as the other fix mention above with

cd $PROJECT_DIR/..
export NODE_BINARY=node
./node_modules/react-native/scripts/react-native-xcode.sh

n-buckley added a commit to n-buckley/react-native-weather that referenced this issue Jun 22, 2023
The `react-native-dotenv` set up did not work where it couldnt find @env like the documentation says to use

Instead used babel-blugin-inline-dotenv described in this stackoverflow post:  https://stackoverflow.com/questions/57060316/environment-variables-in-babel-config-js

This was the `react-native-dotenv` recommended solution that did not work for me facebook/react-native#29351 (comment)
Copy link

github-actions bot commented Nov 1, 2023

This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days.

@github-actions github-actions bot added the Stale There has been a lack of activity on this issue and it may be closed soon. label Nov 1, 2023
Copy link

github-actions bot commented Nov 8, 2023

This issue was closed because it has been stalled for 7 days with no activity.

@github-actions github-actions bot closed this as completed Nov 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Needs: Triage 🔍 Stale There has been a lack of activity on this issue and it may be closed soon. Tech: Bundler 📦 This issue is related to the bundler (Metro, Haul, etc) used.
Projects
None yet
Development

No branches or pull requests