我已经成功地交叉编译了适用于 iPhone 的 Apache Portable Runtime (APR),使用一组配置脚本调用 GNU Autotools "./configure" 以及必要的交叉编译选项。
我现在正在尝试交叉编译依赖于 libtasn1 和 libgcrypt 的 GNUTLS,而后者又依赖于 libgpg-error。这是我遇到麻烦的地方,可以使用你的帮助......
我目前正在尝试交叉编译 libgpg-error。我之前使用的配置脚本运行良好;“./configure”过程干净利落地完成。当我运行“make”时会出现问题。当我运行 make 时,一切似乎都可以编译,但最后我得到以下令人讨厌的链接器错误:
/bin/sh ../libtool --tag=CC --mode=link /Users/michaelsafyan/Downloads/libgpg-error-1.7/compile /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk' -isystem /Developer/Platforms/iPhoneOS.platform/ Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/gcc/arm-apple-darwin9/4.2.1/include/-isystem /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr /include -isystem /Developer/Platforms/iPhoneOS.platform/Developer/usr/include -isystem /opt/iphone-3.0/include -isystem /usr/local/iphone-3.0/include -arch armv6 --sysroot='/Developer /Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk' -L/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0。sdk/usr/lib -L/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -L/opt/iphone-3.0/lib -L/usr/local/iphone-3.0/lib -o gpg-error gpg_error- strsource-sym.o gpg_error-strerror-sym.o gpg_error-gpg-error.o ./libgpg-error.la /Users/michaelsafyan/Downloads/libgpg-error-1.7/compile /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 -std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot =/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk -isystem /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/lib/gcc/arm-apple- darwin9/4.2.1/include/ -isystem /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk/usr/include -isystem /Developer/Platforms/iPhoneOS.platform/Developer/usr/include -isystem /opt/iphone-3.0/include -isystem /usr/local/iphone-3.0/include -arch armv6 --sysroot=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0.sdk -o gpg-error gpg_error-strsource-sym.o gpg_error-strerror-sym.o gpg_error-gpg-error.o -L/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.0。sdk/usr/lib -L/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -L/opt/iphone-3.0/lib -L/usr/local/iphone-3.0/lib ./.libs/libgpg-错误.a 未定义的符号: “_fwrite$UNIX2003”,引用自: _main 在 gpg_error-gpg-error.o “_strerror$UNIX2003”,引用自: _gpg_strerror 在 libgpg-error.a(libgpg_error_la-strerror.o) ld:未找到符号 collect2: ld 返回 1 个退出状态 make[3]: *** [gpg-error] 错误 1 make[2]: *** [all] 错误 2 make[1]: *** [all-recursive] 错误 1 make: *** [全部] 错误 2
关于如何让它发挥作用的任何想法?我正在编译的软件版本是:
- libgpg 错误:1.7
- libgcrypt:1.4.4
- libtasn1:2.2
- 坚果:2.8.4
请帮忙。谢谢你。
更新
根据最初的反馈,每个 SDK 在“$SDKROOT/usr/lib”中都有一个“libSystem.dylib”的副本。"$DEVROOT/usr/lib" 中没有 libSystem 的副本,其中:
- $DEVROOT = "/Developer/Platforms/iPhoneOS.platform/Developer"
- $SDKROOT = "$DEVROOT/SDKs/iPhoneOS$VER.sdk"
“libSystem”库包含每个符号的普通、未修饰的版本,但不包含符号的“$UNIX2003”变体。我怀疑 GPG-ERROR 正在定义“_POSIX_C_SOURCE”、“_UNIX”或另一个 UNIX 功能测试宏,并且当这些功能测试宏存在时,将包含“$UNIX2003”附加到函数的流氓头文件被包括在内。从包含目录列表中删除“$DEVROOT/usr/include”对于删除此错误消息没有任何影响。
作为最后的手段,我看到“ld”接受一个“-alias_list”选项,该选项允许一个人指定一个带有“_fwrite _fwrite$UNIX2003”之类的条目的文件,以强制将这些未定义的符号解析为其未修饰的变体。如果可能的话,我想避免这个选项,因为它看起来很老套并且有潜在的危险。