使用 Android NDK 制作 -k
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ndk-build
是 GNU Make 的包装器。如果您cat ndk-build
您将看到脚本的代码。因此,您可以将选项传递给命令,就像使用
make
一样。例如,如果您输入 ndk-build -h,脚本将打印 make 帮助。The
ndk-build
is a wrapper around GNU Make. If youcat 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 typendk-build -h
, the script will print the make help.ndk-build 将所有参数传递给 make,因此 ndk-build -k 应该可以工作。
ndk-build pass all the arguments to make, so
ndk-build -k
should work.