We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef7fff5 commit 2dc28fcCopy full SHA for 2dc28fc
src/trusted/service_runtime/linux/CMakeLists.txt
@@ -68,10 +68,16 @@ elseif (ARCH_armhf OR ARCH_armel)
68
set(RESERVE_TOP "0x40002000")
69
70
if (DAEMON_CXX_COMPILER_Clang_COMPATIBILITY)
71
- if (ARCH_armhf)
72
- set(COMPILER_OVERRIDE "arm-linux-gnueabihf-g++")
73
- elseif (ARCH_armel)
74
- set(COMPILER_OVERRIDE "arm-linux-gnueabi-g++")
+ if (ANDROID)
+ if (ARCH_armel)
+ set(COMPILER_OVERRIDE "arm-linux-androideabi-g++")
+ endif()
75
+ elseif (LINUX)
76
+ if (ARCH_armhf)
77
+ set(COMPILER_OVERRIDE "arm-linux-gnueabihf-g++")
78
+ elseif (ARCH_armel)
79
+ set(COMPILER_OVERRIDE "arm-linux-gnueabi-g++")
80
81
endif()
82
83
elseif (ARCH_mipsel)
0 commit comments