为iPhone编译C lib

时间:2010-08-31 14:43:04

标签: iphone xcode compilation configure zeromq

我正在尝试编译ZeroMQ C绑定以便能够在iPhone上使用它,这是我的配置选项:

./configure --host=arm-apple-darwin --enable-static=yes --enable-shared=no CC=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/arm-apple-darwin10-gcc-4.2.1 CFLAGS="-pipe -std=c99 -Wno-trigraphs -fpascal-strings -O0 -Wreturn-type -Wunused-variable -fmessage-length=0 -fvisibility=hidden -miphoneos-version-min=3.1.2 -gdwarf-2 -mthumb -I/Library/iPhone/include -isysroot /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS4.0.sdk -mdynamic-no-pic" CPP=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp AR=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ar AS=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/as LIBTOOL=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/libtool STRIP=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/strip RANLIB=/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/ranlib

它实际上配置和编译很好,但是当我将它添加到Xcode Frameworks部分时,我收到警告:ld: warning: in /path/to/app/libzmq.a, file was built for unsupported file format which is not the architecture being linked (armv7)并且发现了很多符号错误。

如果我将当前活动架构从armv6更改为armv7,警告消息会将其更改为armv6。 我做错了什么?

谢谢, 丹

2 个答案:

答案 0 :(得分:6)

听起来你正在为iPhone构建一个通用的armv6 / armv7二进制文件(这是默认设置,所以这很有意义)。这意味着您需要构建一个通用库来链接。构建两个库,然后使用lipo将两者结合起来。

例如,构建armv6 one并将其放在armv6/libfoo.a,将armv7放在armv7/libfoo.a。然后运行

lipo -arch armv6 armv6/libfoo.a -arch armv7 armv7/libfoo.a -output libfoo.a -create

创建通用库libfoo.a

答案 1 :(得分:0)

鉴于来自ld的警告消息,我的猜测是你没有为正确的平台编译库。如果您正在使用configure,我猜您是在尝试在Xcode之外编译库,然后将其带入Xcode以将其链接。

也许您可以尝试运行configure来设置标头,但是在Xcode中执行实际的编译步骤?

关于编译用于iPhone项目的第三方(外部)C或C ++库,有很多相关的问题。

Creating static library for iPhone

TiMidity: need help compiling this library for the iPhone