eclipse中的NDK命令行参数

时间:2014-04-08 19:02:11

标签: android-ndk

使用命令行构建NativeActivity项目时,我可以将其他参数传递给ndk-build,例如-j 4-B

有没有办法可以设置它,以便在我通过eclipse运行构建时传递相同的参数?

1 个答案:

答案 0 :(得分:1)

是的,你可以做到以上几点。首先,您需要为eclipse安装CDT插件。如果您使用来自Android-adt-bundle的eclipse,那么eclipse预先安装了CDT插件。

其次,在首选项中,您需要设置ndk路径,如下所示:

Eclipse -> Window -> Preferences -> Android -> NDK -> set path to the NDK

第三,

Right click on an Android project and select Android Tools -> Add native support.

四,

    Right click project -> properties -> C/C++ Build:

    In the build command, you will be having ndk-build, now append that command wit whatever parameter you want to pass. Then press apply and press ok.