diff options
| author | siposcsaba89 <siposcsaba89@gmail.com> | 2021-09-01 05:27:44 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-31 20:27:44 -0700 |
| commit | 18b793e28a55957f4abad9150872ec5f4d33cfbd (patch) | |
| tree | 019a1ef9c7f86b422c6d4084ed8bdb5d406c4009 /ports | |
| parent | 2ea3e99aac5994ebd0b13a4946bdf54ad7b5879f (diff) | |
| download | vcpkg-18b793e28a55957f4abad9150872ec5f4d33cfbd.tar.gz vcpkg-18b793e28a55957f4abad9150872ec5f4d33cfbd.zip | |
[boost-context] arm64 linux abi fix (#19522)
* [boost-context] arm64 linux abi fix
* [boost-context] baseline version updated
Diffstat (limited to 'ports')
| -rw-r--r-- | ports/boost-context/b2-options.cmake.in | 2 | ||||
| -rw-r--r-- | ports/boost-context/vcpkg.json | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/ports/boost-context/b2-options.cmake.in b/ports/boost-context/b2-options.cmake.in index 419a2b1cb..a16d25fdb 100644 --- a/ports/boost-context/b2-options.cmake.in +++ b/ports/boost-context/b2-options.cmake.in @@ -13,7 +13,7 @@ if(@VCPKG_TARGET_IS_OSX@) )
endif()
-if(@VCPKG_TARGET_IS_ANDROID@)
+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
diff --git a/ports/boost-context/vcpkg.json b/ports/boost-context/vcpkg.json index 0faddcdb5..22ccf155d 100644 --- a/ports/boost-context/vcpkg.json +++ b/ports/boost-context/vcpkg.json @@ -1,6 +1,7 @@ { "name": "boost-context", "version": "1.76.0", + "port-version": 1, "description": "Boost context module", "homepage": "https://github.com/boostorg/context", "supports": "!uwp & !emscripten", |
