mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 06:51:18 +08:00
18b793e28a
* [boost-context] arm64 linux abi fix * [boost-context] baseline version updated
30 lines
743 B
CMake
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()
|