使用 Android NDK 制作 -k

发布于 2024-12-27 08:41:25 字数 137 浏览 3 评论 0原文

使用 make,我可以执行 make -k 来使编译器尝试编译每个可以尝试的文件,以显示尽可能多的编译错误。如何在 Android NDK 中使用 ndk-build 进行等效操作?

With make, I can do a make -k to cause the compiler to try compiling every file that can be tried, to show me as many compilation errors as possible. How do I do the equivalent with ndk-build in the Android NDK?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

别理我 2025-01-03 08:41:25

ndk-build 是 GNU Make 的包装器。如果您 cat ndk-build 您将看到脚本的代码。

因此,您可以将选项传递给命令,就像使用 make 一样。例如,如果您输入 ndk-build -h,脚本将打印 make 帮助。

The ndk-build is a wrapper around GNU Make. If you cat ndk-build you will see the code of the script.

So, you can pass options to the command as if you were using make. For instance, if you type ndk-build -h, the script will print the make help.

倒数 2025-01-03 08:41:25

ndk-build 将所有参数传递给 make,因此 ndk-build -k 应该可以工作。

ndk-build pass all the arguments to make, so ndk-build -k should work.

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