Xcode 10 에서 libstdc++ 오류 관련
# ERROR LOG ld: library not found for -lstdc++.6.0.9 clang: error: linker command failed with exit code 1 (use -v to see invocation) libstdc++은 Xcode 8부터 지원하지 않는다고 Apple 에서 경고하고 있었고 Xcode 10에 오면서 없어졌다. # 해결방법 1. libstdc++ 대신 libc++로 되게끔 라이브러리를 재배포 2. XCode 9 이하 버전에서 libstdc++ 관련 파일을 복사해서 XCode 10 폴더에 복사 - lib 경로 /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDK..
2020.05.21