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 | |
| 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
| -rw-r--r-- | ports/boost-context/b2-options.cmake.in | 2 | ||||
| -rw-r--r-- | ports/boost-context/vcpkg.json | 1 | ||||
| -rw-r--r-- | versions/b-/boost-context.json | 5 | ||||
| -rw-r--r-- | versions/baseline.json | 2 |
4 files changed, 8 insertions, 2 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", diff --git a/versions/b-/boost-context.json b/versions/b-/boost-context.json index 57b42e3d4..02dd5e0ff 100644 --- a/versions/b-/boost-context.json +++ b/versions/b-/boost-context.json @@ -1,6 +1,11 @@ { "versions": [ { + "git-tree": "42c1043410aaf53351ccaf5c7ee6ae133f78a5db", + "version": "1.76.0", + "port-version": 1 + }, + { "git-tree": "7543f135833a2b698617f25a5206dd4194fe01bb", "version": "1.76.0", "port-version": 0 diff --git a/versions/baseline.json b/versions/baseline.json index 4c514787f..b4480c5be 100644 --- a/versions/baseline.json +++ b/versions/baseline.json @@ -546,7 +546,7 @@ }, "boost-context": { "baseline": "1.76.0", - "port-version": 0 + "port-version": 1 }, "boost-contract": { "baseline": "1.76.0", |
