android nkd-r5b+pelyaSDL ./configure 错误:C 编译器无法创建可执行文件

发布于 2024-10-15 02:38:14 字数 386 浏览 2 评论 0原文

我正在尝试使用新的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ま柒月 2024-10-22 02:38:14

您的环境设置可能会影响构建。
我遇到了同样的问题。事实证明,原因是我的 .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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文