Abilash
Abilash

Reputation: 104

Android GCC compiler change

How to change the default GCC compiler from 4.6 to 4.8 in ndk-build command? I want to use the arm-linux-androideabi-4.8 but by default its arm-linux-androideabi-4.6. Is there any way to do so ??

Upvotes: 0

Views: 388

Answers (1)

ph0b
ph0b

Reputation: 14463

You can directly call ndk-build NDK_TOOLCHAIN_VERSION=4.8, or set this inside jni/Application.mk:

NDK_TOOLCHAIN_VERSION:=4.8

Upvotes: 2

Related Questions