vcpkg/ports/boost-context/b2-options.cmake.in
siposcsaba89 18b793e28a
[boost-context] arm64 linux abi fix (#19522)
* [boost-context] arm64 linux abi fix

* [boost-context] baseline version updated
2021-08-31 20:27:44 -07:00

30 lines
743 B
CMake

if(@VCPKG_TARGET_IS_WINDOWS@)
list(APPEND B2_OPTIONS
abi=ms
binary-format=pe
)
endif()
if(@VCPKG_TARGET_IS_OSX@)
list(APPEND B2_OPTIONS
abi=sysv
binary-format=mach-o
)
endif()
if("@VCPKG_TARGET_IS_LINUX@" STREQUAL "ON" OR "@VCPKG_TARGET_IS_ANDROID@" STREQUAL "ON")
if(VCPKG_TARGET_ARCHITECTURE STREQUAL "arm" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "arm64")
list(APPEND B2_OPTIONS
abi=aapcs
)
elseif(VCPKG_TARGET_ARCHITECTURE STREQUAL "x86" OR VCPKG_TARGET_ARCHITECTURE STREQUAL "x64")
list(APPEND B2_OPTIONS
abi=sysv
)
endif()
list(APPEND B2_OPTIONS
binary-format=elf
)
endif()