Whenever I edit to remove -koption from build command line of my C++ project (Project->Properties->C/C++ Build -> Build command), Eclipse adds it back upon saving properties. How to defeat this?
|
|
||||
| show 1 more comment |
|
For generic C++ projects, you may check or uncheck "Stop on first build error" on the second tab (Behavior) of the Properties/C++ Build/Builder settings dialog. When the checkbox is off, Note that for Android NDK projects, there is now a new ADT plugin which you can get as an ADT bundle or plugin from http://developer.android.com. For such project, if you look at Properties/C++ Build/Builder settings, you see You can still create a makefile project using the Android toolchain, and set "ndk-build" as an override for the default build command make. With this, you can get |
|||
|
|
ndk-buildas default build command. On Windows this will all work without cygwin. – Alex Cohn Nov 27 '12 at 19:09ndk-build. How is this relevant, though? – Violet Giraffe Nov 28 '12 at 7:33ndk-buildas default build command. On the other hand, you can create a makefile project, and set "ndk-build" as an override for the default build command make. Now, for the latter type of projects you may check or uncheck "Stop on first build error" on the second tab (Behavior) of the same dialog. When the checkbox is off, -k is automatically added to whatever command you have in the first tab. Isn't it relevant? – Alex Cohn Nov 28 '12 at 14:47