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

directory not found for option '-L-L/.../CocoaAsyncSocket' #36

Open
mtieltjes opened this issue Apr 3, 2020 · 18 comments
Open

directory not found for option '-L-L/.../CocoaAsyncSocket' #36

mtieltjes opened this issue Apr 3, 2020 · 18 comments

Comments

@mtieltjes
Copy link

Environment

System:
    OS: macOS 10.15.2
    CPU: (16) x64 Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
    Memory: 66.96 MB / 32.00 GB
    Shell: 3.2.57 - /bin/bash
  Binaries:
    Node: 13.3.0 - /usr/local/bin/node
    Yarn: 1.21.1 - /usr/local/bin/yarn
    npm: 6.13.2 - /usr/local/bin/npm
    Watchman: 4.9.0 - /usr/local/bin/watchman
  Managers:
    CocoaPods: 1.8.4 - /usr/local/bin/pod
  SDKs:
    iOS SDK:
      Platforms: iOS 13.4, DriverKit 19.0, macOS 10.15, tvOS 13.4, watchOS 6.2
    Android SDK:
      API Levels: 23, 24, 25, 26, 27, 28, 29
      Build Tools: 28.0.3, 29.0.2
      System Images: android-27 | Google Play Intel x86 Atom, android-29 | Google APIs Intel x86 Atom, android-29 | Google Play Intel x86 Atom
      Android NDK: Not Found
  IDEs:
    Android Studio: 3.5 AI-191.8026.42.35.6010548
    Xcode: 11.4/11E146 - /usr/bin/xcodebuild
  Languages:
    Python: 2.7.16 - /usr/bin/python
  npmPackages:
    @react-native-community/cli: Not Found
    react: 16.11.0 => 16.11.0 
    react-native: 0.62.0 => 0.62.0 
  npmGlobalPackages:
    *react-native*: Not Found

Upgrading version

0.61.5 => 0.62

Description

After following the upgrade helper and this issue for the iOS project file, I get stuck with the following build error:

ld: warning: directory not found for option '-L-L/Users/../ios/build/Release-iphonesimulator/CocoaAsyncSocket'
ld: library not found for -lCocoaAsyncSocket
clang: error: linker command failed with exit code 1 (use -v to see invocation)

I suspect something is wrong in my Search Paths, but I am not yet able to figured it out.

Reproducible demo

@aaroncornelissen
Copy link

I followed the same steps as you and I also got the errormessage 'ld: library not found for -lCocoaAsyncSocket' when compiling in xcode. But after a lot trying I discovered my problem.

I problem was with the LIBRARY_SEARCH_PATHS, see also: step 4. I compared my project with a new RN project and I saw that the $(inherited) was at the top at the new project, so reversed the order and then it worked.

@lucasbento
Copy link
Member

Nice, thanks for sharing @aaroncornelissen!

@mtieltjes can you please check if @aaroncornelissen's solution works for you?

@Brianop
Copy link

Brianop commented Apr 9, 2020

Im also getting a similar error, I followed @aaroncornelissen solution but that only gave this:

ld: warning: directory not found for option '-L-L/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator' ld: warning: Could not find or use auto-linked library 'swiftCompatibility50' ld: warning: Could not find or use auto-linked library 'swiftCompatibilityDynamicReplacements'

@Brianop
Copy link

Brianop commented Apr 9, 2020

Ok I finally got my project working, what I did was combine this two:

facebook/react-native#28483 (comment)

If you're not using lottie I don't think this is necessary:
lottie-react-native/lottie-react-native#575 (comment)

@ghost
Copy link

ghost commented May 23, 2020

https://medium.com/@punjabicoder/react-native-version-0-62-e7414c2b2d35
check this post may it helps you.
it helped me guys

@R4DIC4L
Copy link

R4DIC4L commented May 27, 2020

Thank you for sharing, @aaroncornelissen! For me, it was the same variable, just for Target instead of Project.

Apparently you need to ensure the LIBRARY_SEARCH_PATHS has $(inherited) set last on both React Native Project and Target level in Build settings. Otherwise, it seems the relative search paths for each pod will not be searched and only inherited is used. I don't have an explanation for this, as I don't know how XCode treats the linking phase.

RNSearchDirectories-TargetLevel

@francofadini
Copy link

Thanks @aaroncornelissen, thanks for your time in so little detail! You save my day.

The same problem here, solve with @aaroncornelissen solution!

@hoangngocthangbmw
Copy link

react native 0.63
ld: warning: directory not found for option '-L-L/Users/ominext/Library/Developer/Xcode/DerivedData/demoTw-atyxihfhmofnsyerjlnjtjhnrlwe/Build/Intermediates.noindex/ArchiveIntermediates/demoTw/BuildProductsPath/Release-iphoneos/CocoaAsyncSocket'

@hoangngocthangbmw
Copy link

can i help you ??? :(

@ivanstnsk
Copy link

ivanstnsk commented Jul 23, 2020

@hoangngocthangbmw hello! I had the same issue with CocoaAsyncSocket.
It was so frustrating because I could find nothing regarding AsyncSocket. 😞 I'll add logs here so people can google this answer:

ld: warning: directory not found for option '-L-L/Users/{USER}/Library/Developer/Xcode/DerivedData/{PROJECT_NAME}-apscvrgcsswobubywbzzrulfcylc/Build/Products/Debug-iphonesimulator/CocoaAsyncSocket' ld: library not found for -lCocoaAsyncSocket

Environment:
Xcode: 11.6
Pod: 1.9.3
React Native: 0.62.2

Solution:
I switched the Legacy build system to New build system in Xcode.

@waheedakhtar694
Copy link

waheedakhtar694 commented Sep 9, 2020

@aaroncornelissen Thanks, After four hours, at last your solution worked for me.

I followed the same steps as you and I also got the errormessage 'ld: library not found for -lCocoaAsyncSocket' when compiling in xcode. But after a lot trying I discovered my problem.

I problem was with the LIBRARY_SEARCH_PATHS, see also: step 4. I compared my project with a new RN project and I saw that the $(inherited) was at the top at the new project, so reversed the order and then it worked.

@Biplovkumar
Copy link

Most frustrating issue.
just i removed .ttf files which is came from link vector icons in copy bundle resources tab and then it is compiled successfully.

@shen8686184
Copy link

as the aaroncornelissen commented on 9 Apr , i solved this by add $(inherited) on the top of the LIBRARY_SEARCH_PATHS

@righdforsa
Copy link

righdforsa commented Jan 6, 2021

I had this issue, but $(inherited) was already at the bottom of my LIBRARY_SEARCH_PATHS. Taking a cue from a brand-new project, I added "${PODS_CONFIGURATION_BUILD_DIR}" as recursive, which got me past -lCocoaAsyncSocket, but now I'm stuck on -lcrypto. Anybody fix this already?

edit: was able to get this to work once I changed the run target to "Any iOS" and updated the xcodeproj library search paths, as well as setting up all the provisioning profile stuff in the apple dev portal. 🤷

@russelRajitha
Copy link

is there any other solution, um stuck on this for hours.

@MehulATL
Copy link

I had this issue, but $(inherited) was already at the bottom of my LIBRARY_SEARCH_PATHS. Taking a cue from a brand-new project, I added "${PODS_CONFIGURATION_BUILD_DIR}" as recursive, which got me past -lCocoaAsyncSocket, but now I'm stuck on -lcrypto. Anybody fix this already?

edit: was able to get this to work once I changed the run target to "Any iOS" and updated the xcodeproj library search paths, as well as setting up all the provisioning profile stuff in the apple dev portal. 🤷

recursive fix worked for me. spent a few days on this. thanks so much!

@amerllica
Copy link

amerllica commented Jun 1, 2022

I don't know why the Facebook teams haven't fixed it, the solution is this:

  • Open Xcode and bring the Build Settings
  • Bring the Search Paths and then double click on Library search paths to modify it
  • Add ${inherited} to the first of the list [It's important to be the first]
  • Go back to the terminal and navigate to the ios folder
  • Delete the build folder by this command rm -rf build/
  • Try to run the project (No difference between the CLI of Xcode)

@a22agarw
Copy link

a22agarw commented Mar 19, 2024

Attempted all of the above but this error was still present.

If its a react-native project, open the .xcworkspace instead of the .xcodeproj in XCode.

That solved it for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests