mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 08:24:25 +01:00
android-arm: Add CMake 3.7 toolchain file support
See: https://cmake.org/cmake/help/v3.7/manual/cmake-toolchains.7.html#cross-compiling-for-android-with-a-standalone-toolchain
This commit is contained in:
parent
46e4b18ebf
commit
0d3333a3e1
@ -2,6 +2,9 @@ set(CMAKE_SYSTEM_NAME Android)
|
||||
set(CMAKE_SYSTEM_VERSION 1)
|
||||
|
||||
set(cross_triple arm-linux-androideabi)
|
||||
set(CMAKE_ANDROID_STANDALONE_TOOLCHAIN /usr/${cross_triple}/)
|
||||
set(CMAKE_ANDROID_ARM_MODE 1)
|
||||
set(CMAKE_ANDROID_ARM_NEON 1)
|
||||
|
||||
set(CMAKE_C_COMPILER /usr/${cross_triple}/bin/${cross_triple}-gcc)
|
||||
set(CMAKE_CXX_COMPILER /usr/${cross_triple}/bin/${cross_triple}-g++)
|
||||
|
Loading…
Reference in New Issue
Block a user