mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 01:48:59 +08:00
c6043cde21
Fixes build errors on android due to wrong pthread flags and 32 bit API level requirements (`ftello`). Alternative to #39314.
15 lines
477 B
Diff
15 lines
477 B
Diff
diff --git a/source/CMakeLists.txt b/source/CMakeLists.txt
|
|
index ab5ddfe..e99c4d8 100755
|
|
--- a/source/CMakeLists.txt
|
|
+++ b/source/CMakeLists.txt
|
|
@@ -570,6 +570,9 @@ if((MSVC_IDE OR XCODE OR GCC) AND ENABLE_ASSEMBLY)
|
|
set(SUFFIX o)
|
|
endif()
|
|
|
|
+ if(CMAKE_CXX_COMPILER_TARGET)
|
|
+ list(PREPEND ARM_ARGS "--target=${CMAKE_CXX_COMPILER_TARGET}")
|
|
+ endif()
|
|
if(ARM OR CROSS_COMPILE_ARM)
|
|
# compile ARM arch asm files here
|
|
enable_language(ASM)
|