upgrade-support
upgrade-support copied to clipboard
Library not found error on React-native 0.63.2
Environment
System: OS: macOS 10.15.3 CPU: (16) x64 Intel(R) Xeon(R) CPU E5-2680 v2 @ 2.80GHz Memory: 3.83 GB / 32.00 GB Shell: 3.2.57 - /bin/bash Binaries: Node: 12.8.0 - /usr/local/bin/node Yarn: 1.17.3 - /usr/local/bin/yarn npm: 6.14.2 - /usr/local/bin/npm Watchman: 4.9.0 - /usr/local/bin/watchman Managers: CocoaPods: 1.10.0. - /usr/local/bin/pod SDKs: iOS SDK: Platforms: iOS 13.2, DriverKit 19.0, macOS 10.15, tvOS 13.2, watchOS 6.1 Android SDK: Not Found IDEs: Android Studio: Not Found Xcode: 11.3.1/11C505 - /usr/bin/xcodebuild Languages: Java: 12.0.2 - /usr/bin/javac Python: 2.7.16 - /usr/bin/python npmPackages: @react-native-community/cli: Not Found react: 16.13.1 => 16.13.1 react-native: 0.63.2 => 0.63.2 react-native-macos: Not Found npmGlobalPackages: react-native: Not Found
Upgrading version
0.63.2
Description
I got this error.

@magic990619 Did you ever solve this issue? Experiencing a very similar error, but with a different library:
ld: library not found for -ltipsi-stripe
clang: error: linker command failed with exit code 1 (use -v to see invocation)
I had similar issue after upgrading to RN 0.64.0
ld: library not found for -lBoringSSL-GRPC
The problem was In LIBRARY_SEARCH_PATHS (Project -> Build Settings -> LIBRARY_SEARCH_PATHS) I had this
"$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)",
"$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME)",
"$(inherited)"
Removing the quotes solved the issue
$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME),
$(TOOLCHAIN_DIR)/usr/lib/swift-5.0/$(PLATFORM_NAME),
$(inherited)