android nkd-r5b+pelyaSDL ./configure 错误:C 编译器无法创建可执行文件
我正在尝试使用新的 android-ndk-r5b 使用 pelya 的 SDL 端口(https://github.com/pelya/commandergenius)编译适用于 Android 的 Dosbox0.74。 不幸的是,Dosbox ./configure 脚本失败:
configure: error: C compiler cannot create executables
我已经必须用较新的文件替换 config.sub 和 config.guess 文件,以便 --host=arm-linux-androideabi 标志得到正确识别。对于构建设置,我使用了 pelya 的教程,可以在上面粘贴的 github 站点上找到该教程。 有人遇到过类似的错误/问题吗?
I'm trying to compile Dosbox0.74 for Android with pelya's SDL port (https://github.com/pelya/commandergenius) using the new android-ndk-r5b.
Unfortunately the Dosbox ./configure script fails with:
configure: error: C compiler cannot create executables
I already had to replace the config.sub and config.guess files with newer ones, so that the --host=arm-linux-androideabi flag get recognized properly. For build setup I used pelya's tutorial, which can be found on the github site pasted above.
Has anybody encountered similar errors/problems?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的环境设置可能会影响构建。
我遇到了同样的问题。事实证明,原因是我的 .bash_profile 中的“export GREP_OPTIONS='--color=always'”。我猜 NDK 构建脚本不会处理颜色控制字符。
所以我的解决方案是在构建应用程序时使用“env PATH=${PATH}”来使环境干净。
Your environment settings may affect the build.
I encountered the same problem. It turns out the cause is "export GREP_OPTIONS='--color=always'" in my .bash_profile. NDK build script does not process color control characters I guess.
So my solution is I use "env PATH=${PATH}" to make the environment clean when I build an app.