Skip to content

Commit

Permalink
[boost-coroutine] works on arm (#27091)
Browse files Browse the repository at this point in the history
  • Loading branch information
autoantwort committed Oct 5, 2022
1 parent 72c3a75 commit afb70b3
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 8 deletions.
3 changes: 2 additions & 1 deletion ports/boost-asio/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "boost-asio",
"version": "1.80.0",
"port-version": 1,
"description": "Boost asio module",
"homepage": "https://github.com/boostorg/asio",
"license": "BSL-1.0",
Expand All @@ -18,7 +19,7 @@
"boost-core",
{
"name": "boost-coroutine",
"platform": "!arm & !uwp & !emscripten"
"platform": "!(arm & windows) & !uwp & !emscripten"
},
"boost-date-time",
"boost-exception",
Expand Down
3 changes: 2 additions & 1 deletion ports/boost-coroutine/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"name": "boost-coroutine",
"version": "1.80.0",
"port-version": 1,
"description": "Boost coroutine module",
"homepage": "https://github.com/boostorg/coroutine",
"license": "BSL-1.0",
"supports": "!arm & !uwp & !emscripten",
"supports": "!(arm & windows) & !uwp & !emscripten",
"dependencies": [
"boost-assert",
{
Expand Down
5 changes: 3 additions & 2 deletions ports/boost/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "boost",
"version": "1.80.0",
"port-version": 1,
"description": "Peer-reviewed portable C++ source libraries",
"homepage": "https://boost.org",
"license": "BSL-1.0",
Expand Down Expand Up @@ -39,7 +40,7 @@
"boost-core",
{
"name": "boost-coroutine",
"platform": "!arm & !uwp & !emscripten"
"platform": "!(arm & windows) & !uwp & !emscripten"
},
{
"name": "boost-coroutine2",
Expand All @@ -55,7 +56,7 @@
"boost-exception",
{
"name": "boost-fiber",
"platform": "!osx & !uwp & !arm & !emscripten"
"platform": "!uwp & !arm & !emscripten"
},
{
"name": "boost-filesystem",
Expand Down
7 changes: 6 additions & 1 deletion scripts/boost/generate-ports.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ else {
$portVersions = @{
#e.g. "boost-asio" = 1;
"boost-fiber" = 1;
"boost-coroutine" = 1;
"boost" = 1;
"boost-asio" = 1;
"boost-build" = 1;
"boost-modular-build-helper" = 1;
}

$portData = @{
Expand Down Expand Up @@ -78,7 +83,7 @@ $portData = @{
};
"boost-context" = @{ "supports" = "!uwp & !emscripten" };
"boost-stacktrace" = @{ "supports" = "!uwp" };
"boost-coroutine" = @{ "supports" = "!arm & !uwp & !emscripten" };
"boost-coroutine" = @{ "supports" = "!(arm & windows) & !uwp & !emscripten" };
"boost-coroutine2" = @{ "supports" = "!emscripten" };
"boost-test" = @{ "supports" = "!uwp" };
"boost-wave" = @{ "supports" = "!uwp" };
Expand Down
5 changes: 5 additions & 0 deletions versions/b-/boost-asio.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "5ee085e21ed4445f2cb442f39fd91c77f79a80e4",
"version": "1.80.0",
"port-version": 1
},
{
"git-tree": "2879fa47cd2ac0abbd8ad8c1b38fa28605c45bee",
"version": "1.80.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/b-/boost-coroutine.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "58decd230ff2227603af8e6e95dfcf45fab3b032",
"version": "1.80.0",
"port-version": 1
},
{
"git-tree": "c5c4a955fcf3465c0e9589a57d9c9f2df02eb3a2",
"version": "1.80.0",
Expand Down
5 changes: 5 additions & 0 deletions versions/b-/boost.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "dd28384ddceb935eecbc6e787b67e2a9b506aab3",
"version": "1.80.0",
"port-version": 1
},
{
"git-tree": "f4e929db67c1d0b4c043ec1f1f1d1f1157029d99",
"version": "1.80.0",
Expand Down
6 changes: 3 additions & 3 deletions versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,7 @@
},
"boost": {
"baseline": "1.80.0",
"port-version": 0
"port-version": 1
},
"boost-accumulators": {
"baseline": "1.80.0",
Expand All @@ -582,7 +582,7 @@
},
"boost-asio": {
"baseline": "1.80.0",
"port-version": 0
"port-version": 1
},
"boost-assert": {
"baseline": "1.80.0",
Expand Down Expand Up @@ -670,7 +670,7 @@
},
"boost-coroutine": {
"baseline": "1.80.0",
"port-version": 0
"port-version": 1
},
"boost-coroutine2": {
"baseline": "1.80.0",
Expand Down

0 comments on commit afb70b3

Please sign in to comment.