Android.mk - what toolchain used by default? -
what toolchain used default when compile through android.mk ? , how change toolchain ?
the default toolchain gcc-4.6 long time. has changed gcc-4.8 in ndk r10d version (currently latest version).
you can choose use toolchain through modifying ndk_toolchain_version
variable, throughndk-build
call (example: ndk-build ndk_toolchain_version=clang3.4
, or setting inside application.mk file. example:
ndk_toolchain_version := clang3.4
Comments
Post a Comment