-
Notifications
You must be signed in to change notification settings - Fork 412
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
-lstdc++.6 Xcode 10 #136
Comments
no you need to remove |
-l"stdc++.6" this library is using in the Pods AppRTC Classes. When I build the project I receive the error that -l"stdc++.6" is missing because this doesn't appear in Xcode 10. He was removed. Also, I found a solution can I added this library manually in Xcode libs but the application will be rejected on App Store. |
Also come across this issue, please help |
I am having this problem too! Any help would be very appreciated. Thanks! |
I am also facing same issue, please help me |
Libstdc++.6.tbd has been removed in xcode10, you remove it directly in the xcode build setting, and search for the entire project,...xocde project), all The place where it appears is deleted. |
so Libstdc++.6.tbd I need to remove or add please explain me where I have to remove or add that. it's urgent please help me detail @thanks in advance |
Libstdc++.6.tbd has been removed in xcode10, you remove it directly in the xcode ### build setting, and search for the entire project,...xocde project), all The place where it appears is deleted. as above build settings I didn't find anything please explain me in detail@HelloWorldCN |
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1 I have removed -l"stdc++.6" still facing |
I found a temporary solution. Download the file stdc++6 and add it in Xcode. |
As it was mentioned previously, stdc++6 is now available any more. You need to remove all occurances of stdc++6 from your workspace. In order to do that do the following:
:) |
Why it wasn't removed from pod dependency list? It would be more elegant |
@iOSappssolutions where can download this library I am not able to find any link can you provide me. |
ld: library not found for -lstdc++.6
clang: error: linker command failed with exit code 1 (use -v to see invocation)
You need to update -lstdc++.6 to -libc++
In Pods/Development Pods/AppRTC/Support Files/AppRTC.Xcconfig you have this line code
OTHER_LDFLAGS = -l"c++" -l"icucore" -l"sqlite3" -l"stdc++.6" -framework "AVFoundation" -framework "AudioToolbox" -framework "CFNetwork" -framework "CoreAudio" -framework "CoreGraphics" -framework "CoreMedia" -framework "CoreVideo" -framework "GLKit" -framework "OpenGLES" -framework "QuartzCore" -framework "Security"
The text was updated successfully, but these errors were encountered: