我在我的应用程序中使用openCV2.framework。它在模拟器中工作正常,但没有针对iOS设备进行编译。它收到以下错误
ld: library not found for -lstdc++
clang: error: linker command failed with exit code 1 (use -v to see invocation)
我还添加了其他链接标志......
答案 0 :(得分:1)
尝试使用libc ++而不是stdc ++。 (lib)std ++去了GPLv3,所以Apple正在推动libc / c ++。
答案 1 :(得分:-1)
我回答我自己的问题。我通过添加go to Target解决了这个问题 - > BuildSettings - >搜索路径 - >库搜索路径
提供添加动态库路径的正确路径。
现在它会起作用