Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 Xcode 中使用配置文件来分析 opencv 程序,
和“架构”和“有效架构”是“x86_64”
但收到一条消息,如:“没有要编译的架构(ARCHS=ppc i386,VALID_ARCHS=x86_64)。”
如果我将“有效架构”更改为“x86_64 i386”,opencv 中的函数无法链接
我能怎么做?
您只需要使用 x86_64 架构构建您的 OpenCV,作为编译并链接到 OpenCV 库的架构之一。
这是有关如何执行此操作的潜在有用的教程:
http://www.randomsequence.com/articles/opencv-snow-leopard/
这是其他人问的一个相关问题,它也可以帮助你。