简体   繁体   中英

library not found for -lstdc++ in Xcode

I am using the openCV2.framework in my application. It works fine in the simulator, but is not compiling for iOS devices. It get the following error

ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)

I added other linking flag also...

Try using libc++ instead of stdc++. (lib)std++ went GPLv3, so Apple is pushing libc/c++ instead.

I am answer my own question. I solved this problem by add the go to Target -> BuildSettings ->search Path -> library Searchpath

give the correct path of added dynamic library Path .

Now it will work

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM