- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在编写一个针对多种不同手机(包括 iPhone)的程序。该程序依赖于几个第三方库。我在为 iPhone 和 iPhone 模拟器交叉编译这些第三方库时遇到困难。这些库包括 Apache Portable Runtime 和 GNUTLS 及其依赖项。我希望构建的库以前缀“/opt/iphone-3.1”、“/opt/iphone-3.0”、“/opt/iphone-2.2.1”、“/opt/iphone-simulator-3.1”结束”和“/opt/iphone-simulator-3.0”。
为了使交叉编译过程易于重复,我正在创建脚本来调用每个目标平台的“配置”脚本(“iphone3.1-configure”、“iphone3.0-configure”、“iphone2.2.1-配置”、“iphonesim3.1-配置”和“iphonesim3.0-配置”)。这就是我遇到麻烦的地方。
我使用的是 Mac OS X 10.6 Snow Leopard 计算机以及官方 Xcode 3.2 + iPhone SDK 3.1。
我目前有以下“iphone3.1-configure”脚本:
#! /bin/bash## Program : iphone3.1-configure# Author : Michael Aaron Safyan# Synopsis :# This program runs the "configure" script generated by the# GNU Autotools in order to cross-compile thirdparty libraries# for the iPhone 3.1 SDK. Run this script while in a directory# containing an autotools "configure" script. Once run, this# you can use "make" and "sudo make install" to build the library.# An install prefix of "/opt/iphone-3.1/" is used.#unset CPATHunset C_INCLUDE_PATHunset CPLUS_INCLUDE_PATHunset OBJC_INCLUDE_PATHunset LIBSunset DYLD_FALLBACK_LIBRARY_PATHunset DYLD_FALLBACK_FRAMEWORK_PATHexport BUILD_DARWIN_VER=`uname -r`export SDKVER="3.1"export DEVROOT="/Developer/Platforms/iPhoneOS.platform/Developer"export SDKROOT="$DEVROOT/SDKs/iPhoneOS$SDKVER.sdk"export PKG_CONFIG_PATH=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$SDKVER.sdk/usr/lib/pkgconfig:/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/pkgconfig:/opt/iphone-$SDKVER/lib/pkgconfig:/usr/local/iphone-$SDKVER/lib/pkgconfigexport PREFIX="/opt/iphone-$SDKVER"export AS="$DEVROOT/usr/bin/as"export ASCPP="$DEVROOT/usr/bin/as"export AR="$DEVROOT/usr/bin/ar"export RANLIB="$DEVROOT/usr/bin/ranlib"export CPPFLAGS="-std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='$SDKROOT' -isystem $SDKROOT/usr/include -isystem $DEVROOT/usr/include -isystem /opt/iphone-$SDKVER/include -isystem /usr/local/iphone-$SDKVER/include"export CFLAGS="-std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='$SDKROOT' -isystem $SDKROOT/usr/include -isystem $DEVROOT/usr/include -isystem /opt/iphone-$SDKVER/include -isystem /usr/local/iphone-$SDKVER/include"export CXXFLAGS="-std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='$SDKROOT' -isystem $SDKROOT/usr/include -isystem $DEVROOT/usr/include -isystem /opt/iphone-$SDKVER/include -isystem /usr/local/iphone-$SDKVER/include"export LDFLAGS="-arch armv6 --sysroot='$SDKROOT' -L$SDKROOT/usr/lib -L$DEVROOT/usr/lib -L/opt/iphone-$SDKVER/lib -L/usr/local/iphone-$SDKVER/lib"export CPP="$DEVROOT/usr/bin/cpp-4.2"export CC="$DEVROOT/usr/bin/gcc-4.2"export CXX="$DEVROOT/usr/bin/g++-4.2"export LD="$DEVROOT/usr/bin/ld"if [ ! \( -d "$DEVROOT" \) ] ; then echo "The iPhone SDK could not be found. Folder \"$DEVROOT\" does not exist." exit 1fiif [ ! \( -d "$SDKROOT" \) ] ; then echo "The iPhone SDK could not be found. Folder \"$SDKROOT\" does not exist." exit 1fi./configure --prefix="$PREFIX" --build="i386-apple-darwin$BUILD_DARWIN_VER" --host="arm-apple-darwin9" --enable-static --disable-shared $@
在“apr-1.3.8”文件夹中,我正在运行“iphone3.1-configure --disable-dso”,并且得到:
checking build system type... i386-apple-darwin10.0.0checking host system type... arm-apple-darwin9checking target system type... arm-apple-darwin9Configuring APR libraryPlatform: arm-apple-darwin9checking for working mkdir -p... yesAPR Version: 1.3.8checking for chosen layout... aprchecking for arm-apple-darwin9-gcc... /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2checking for C compiler default output file name... a.outchecking whether the C compiler works... yeschecking whether we are cross compiling... yeschecking for suffix of executables... checking for suffix of object files... ochecking whether we are using the GNU C compiler... yeschecking whether /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 accepts -g... yeschecking for /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.2 option to accept ISO C89... unsupportedApplying APR hints file rules for arm-apple-darwin9 adding "-DDARWIN" to CPPFLAGS adding "-DSIGPROCMASK_SETS_THREAD_MASK" to CPPFLAGS setting apr_posixsem_is_global to "yes" setting ac_cv_func_kqueue to "no" setting ac_cv_func_poll to "no"(Default will be unix)checking whether make sets $(MAKE)... yeschecking how to run the C preprocessor... /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp-4.2configure: error: in `/Users/michaelsafyan/Downloads/apr-1.3.8':configure: error: C preprocessor "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp-4.2" fails sanity checkSee `config.log' for more details.
“config.log”的相关部分是:
configure:7710: checking how to run the C preprocessorconfigure:7828: result: /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp-4.2configure:7857: /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp-4.2 -std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk' -isystem /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk/usr/include -isystem /Developer/Platforms/iPhoneOS.platform/Developer/usr/include -isystem /opt/iphone-3.1/include -isystem /usr/local/iphone-3.1/include -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK conftest.ccpp-4.2: error trying to exec 'cc1': execvp: No such file or directoryconfigure:7864: $? = 1configure: failed program was:| /* confdefs.h. */| #define PACKAGE_NAME ""| #define PACKAGE_TARNAME ""| #define PACKAGE_VERSION ""| #define PACKAGE_STRING ""| #define PACKAGE_BUGREPORT ""| /* end confdefs.h. */| #ifdef __STDC__| # include | #else| # include | #endif| Syntax errorconfigure:7857: /Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp-4.2 -std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk' -isystem /Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS3.1.sdk/usr/include -isystem /Developer/Platforms/iPhoneOS.platform/Developer/usr/include -isystem /opt/iphone-3.1/include -isystem /usr/local/iphone-3.1/include -DDARWIN -DSIGPROCMASK_SETS_THREAD_MASK conftest.ccpp-4.2: error trying to exec 'cc1': execvp: No such file or directoryconfigure:7864: $? = 1configure: failed program was:| /* confdefs.h. */| #define PACKAGE_NAME ""| #define PACKAGE_TARNAME ""| #define PACKAGE_VERSION ""| #define PACKAGE_STRING ""| #define PACKAGE_BUGREPORT ""| /* end confdefs.h. */| #ifdef __STDC__| # include | #else| # include | #endif| Syntax errorconfigure:7926: error: in `/Users/michaelsafyan/Downloads/apr-1.3.8':configure:7929: error: C preprocessor "/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/cpp-4.2" fails sanity checkSee `config.log' for more details.
如何修复“iphone3.1-configure”脚本?谢谢。
最佳答案
好的。这仍然没有建立,但它已经走得更远了......
iphone3.1-configure脚本的更新版本为:
#! /bin/bash## Program : iphone3.1-configure# Authors : Michael Aaron Safyan (michaelsafyan@gmail.com)# Synopsis :# This program runs the "configure" script generated by the# GNU Autotools in order to cross-compile thirdparty libraries# for the iPhone 3.1 SDK. Run this script while in a directory# containing an autotools "configure" script. Once you run this,# you can use "make" and "sudo make install" to build the library.# An install prefix of "/opt/iphone-3.1/" is used.#unset CPATHunset C_INCLUDE_PATHunset CPLUS_INCLUDE_PATHunset OBJC_INCLUDE_PATHunset LIBSunset DYLD_FALLBACK_LIBRARY_PATHunset DYLD_FALLBACK_FRAMEWORK_PATHexport BUILD_DARWIN_VER=`uname -r`export SDKVER="3.1"export DEVROOT="/Developer/Platforms/iPhoneOS.platform/Developer"export SDKROOT="$DEVROOT/SDKs/iPhoneOS$SDKVER.sdk"export PKG_CONFIG_PATH=/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS$SDKVER.sdk/usr/lib/pkgconfig:/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/pkgconfig:/opt/iphone-$SDKVER/lib/pkgconfig:/usr/local/iphone-$SDKVER/lib/pkgconfigexport PREFIX="/opt/iphone-$SDKVER"export AS="$DEVROOT/usr/bin/as"export ASCPP="$DEVROOT/usr/bin/as"export AR="$DEVROOT/usr/bin/ar"export RANLIB="$DEVROOT/usr/bin/ranlib"export CPPFLAGS="-pipe -no-cpp-precomp -I$SDKROOT/usr/lib/gcc/arm-apple-darwin9/4.2.1/include/ -I$SDKROOT/usr/include -I$DEVROOT/usr/include -I/opt/iphone-$SDKVER/include -I/usr/local/iphone-$SDKVER/include"export CFLAGS="-std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='$SDKROOT' -isystem $SDKROOT/usr/lib/gcc/arm-apple-darwin9/4.2.1/include/ -isystem $SDKROOT/usr/include -isystem $DEVROOT/usr/include -isystem /opt/iphone-$SDKVER/include -isystem /usr/local/iphone-$SDKVER/include"export CXXFLAGS="-std=c99 -arch armv6 -pipe -no-cpp-precomp --sysroot='$SDKROOT' -isystem $SDKROOT/usr/lib/gcc/arm-apple-darwin9/4.2.1/include/ -isystem $SDKROOT/usr/include -isystem $DEVROOT/usr/include -isystem /opt/iphone-$SDKVER/include -isystem /usr/local/iphone-$SDKVER/include"export LDFLAGS="-arch armv6 --sysroot='$SDKROOT' -L$SDKROOT/usr/lib -L$DEVROOT/usr/lib -L/opt/iphone-$SDKVER/lib -L/usr/local/iphone-$SDKVER/lib"export CPP="$DEVROOT/usr/bin/cpp"export CXXCPP="$DEVROOT/usr/bin/cpp"export CC="$DEVROOT/usr/bin/gcc-4.2"export CXX="$DEVROOT/usr/bin/g++-4.2"export LD="$DEVROOT/usr/bin/ld"export STRIP="$DEVROOT/usr/bin/strip"if [ ! \( -d "$DEVROOT" \) ] ; then echo "The iPhone SDK could not be found. Folder \"$DEVROOT\" does not exist." exit 1fiif [ ! \( -d "$SDKROOT" \) ] ; then echo "The iPhone SDK could not be found. Folder \"$SDKROOT\" does not exist." exit 1fi./configure --prefix="$PREFIX" --build="i386-apple-darwin$BUILD_DARWIN_VER" --host="arm-apple-darwin9" --enable-static --disable-shared ac_cv_file__dev_zero=no ac_cv_func_setpgrp_void=yes $@
此外,我使用“--enable-threads --disable-dso”调用,而不仅仅是“--disable-dso”。这仍然不起作用......它失败了:
checking for PTHREAD_PROCESS_SHARED in pthread.h... yeschecking for pthread_mutexattr_setpshared... yeschecking for working PROCESS_SHARED locks... configure: error: in `/Users/michaelsafyan/Downloads/apr-1.3.8':configure: error: cannot run test program while cross compilingSee `config.log' for more details.
但是,这可能是 APR 的具体测试存在问题。我正在发布followup question在链接中。
我在 Cross-compiling the Apache Portable Runtime for the iPhone 提供了更完整的解决方案.
关于iphone - 为官方 iPhone SDK 交叉编译基于 Autotools 的库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1602182/
我想使用单个(交叉)编译器来编译不同 ARM 调用约定的代码:因为我总是想使用浮点和 NEON 指令,所以我只想选择硬浮点调用约定或软浮点(softfp)调用约定。 我的编译器默认为硬浮点,但它支持我
假设我正在构建一个依赖于两个库的 java 应用程序:A 和 B。A 和 B 都依赖于库 C。管理 A 和 B 使用相同版本的最佳方法是什么所以他们不冲突?我正在使用 Gradle。 最佳答案 从 G
我想在按钮的文本上添加图像。如果我将图像添加为按钮的背景,它就会添加到文本下方。预期结果作为图像添加。请帮忙 更新:我需要以编程方式执行此操作。 最佳答案 在 XML 中, * 在代码中
我已经开始使用 CSS3 制作动画了。 我尝试创建一个动画汉堡菜单,但结果有点难看。顶部和底部的条向右平移一点。所以旋转动画不是很流畅和正确。 这是结果 => 这是我的代码: /* HTML */
给定一个具有2条相交曲线的图像,如下图所示,我如何使用opencv或python检测和区分2条曲线? (所以我需要2条单独的曲线) 最佳答案 您可以扫描每一列,并从连接的零件中识别出簇。 伪算法: l
我正在尝试在 redhat 集群(x86_64 主机)上设置 cross-mingw。我没有 root 访问权限,并且可用的 mingw 二进制文件不起作用(坏 glibc 版本等)。我正在阅读本教程
我正在尝试在javaFX中开发一个游戏,当两个图像相交时,分数将被更新,并且障碍物将不可见。但不幸的是,在游戏中分数不断更新。 我想我无法在游戏中正确地使图像不可见。 以下是相关类的完整代码: pac
pikastar dot com 是网站,当向下滚动它然后在导航菜单展开固定位置时它 > 将穿过主 div。我该如何修复它。 #topNav.sticky { box-shadow: 0 10
我正在使用 Eclipse为 ARM 处理器交叉编译 g++ 项目。我在 Windows 环境中使用 yagarto 工具链。我对 C 项目没有问题,但是对于 C++,我一直收到错误: libc.a(
我想从两个哈希数组中获取并集/交集/差集,例如: array1 = [{:name =>'Guy1', :age => 45},{:name =>'Guy2', :age => 45}] array2
有没有办法在调用任何 Controller 操作之前执行一些代码? 我需要根据 get 参数的值设置 session 变量,而不考虑调用哪个 Controller 。 当然,一旦这个处理完成,请求需要
我刚开始使用 3D 网格,面向用于有限元分析。我想在立方体状矩阵中模拟 Material 的夹杂物(任何形状,但主要对球体和椭圆体感兴趣)。这些夹杂物不应彼此重合。 所以我想为python使用某种包,
我想知道以跨平台方式操作应用程序设置的最佳解决方案是什么。 在 iOS 中,我们可以在设置屏幕中更改应用程序外部的设置,但在 windows phone 和 android 中我们没有。 所以,我的想
var barcodeNum = ko.observable(""); VelocityMeetings.scan = function (params) { var errorMessage = k
这个问题在这里已经有了答案: Transforming data.frame in R (2 个答案) 关闭10 年前。 过去我问过一个关于如何create cross tables from a
我有两个共享同一个工厂的 Controller 。其中一个 Controller 正在更新工厂变量。其他人应该注意该变化并稍后显示。 我是这样尝试的: http://plnkr.co/edit/q1N
标题不好,但这是我发现的将我的问题与简单的表格交叉区分开来的方式,因为我之前的研究总是让我接触到这类主题。 我有几个表 - 为了简化起见,我们只用 3 个表来命名它们:A、B、C。我想将它们全部放在一
我需要做这样的事情(在 MySQL 中),我使用 UNION 的尝试直到现在才奏效。 理论上: SELECT * FROM tableA A JOIN tableB B ON A.tableAId =
注意:使用SDL 2.0,Cross header class问题 我在类之间进行交叉引用,主要是我的类初始化渲染器和我的纹理类引用渲染初始化。现在,我已经能够运行该程序,直到我开始放入纹理类,代码也
我有一个这样的字母数组 var letters = ["Y", "X", "A", "Y", "O", "H", "A", "O", "O"]; 我创建了一个循环来
我是一名优秀的程序员,十分优秀!