vcpkg/ports/x265/compiler-target.diff
Kai Pastor c6043cde21
[x265] Update to 3.6, fix pthread flags, add feature "tools" (#39450)
Fixes build errors on android due to wrong pthread flags and 32 bit API
level requirements (`ftello`).

Alternative to #39314.
2024-06-24 18:03:17 -07:00

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)