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.
我想为我的 ios 应用程序创建 libspeex 库,我使用 ./configure、make 和 make install 命令创建了该库,但是当我将此库添加到 Xcode 时,我遇到了一些错误,例如架构 armv6 的未定义符号:
如果您看到与 SSE 相关的错误,则需要通过阻止_USE_SSE定义来禁用 SSE:
_USE_SSE
/* Enable SSE support */ /* #define _USE_SSE */
大约在 152 号线config.h。这是为 iOS 编译 libspeex 时最常见的问题。如果这不是您遇到的情况,请发布其他错误消息。
config.h