Skip to content

Commit

Permalink
Build cxx-common architecture targets when building llvm via vcpkg.js…
Browse files Browse the repository at this point in the history
…on (#874)
  • Loading branch information
artemdinaburg authored Dec 31, 2021
1 parent 6ecebab commit 3c7a392
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 2 deletions.
19 changes: 18 additions & 1 deletion ports/llvm-12/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
"clang",
"compiler-rt",
"default-options",
"default-targets",
"cxx-common-targets",
"libcxx",
"libcxxabi",
"mlir",
"tools"
],
Expand Down Expand Up @@ -62,6 +63,22 @@
}
]
},
"cxx-common-targets": {
"description": "Build with cxx-common target set",
"dependencies": [
{
"name": "llvm-12",
"default-features": false,
"features": [
"target-aarch64",
"target-arm",
"target-nvptx",
"target-sparc",
"target-x86"
]
}
]
},
"default-targets": {
"description": "Build with platform-specific default targets.",
"dependencies": [
Expand Down
19 changes: 18 additions & 1 deletion ports/llvm-13/vcpkg.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
"clang",
"compiler-rt",
"default-options",
"default-targets",
"cxx-common-targets",
"libcxx",
"libcxxabi",
"mlir",
"tools"
],
Expand Down Expand Up @@ -62,6 +63,22 @@
}
]
},
"cxx-common-targets": {
"description": "Build with cxx-common target set",
"dependencies": [
{
"name": "llvm-13",
"default-features": false,
"features": [
"target-aarch64",
"target-arm",
"target-nvptx",
"target-sparc",
"target-x86"
]
}
]
},
"default-targets": {
"description": "Build with platform-specific default targets.",
"dependencies": [
Expand Down

0 comments on commit 3c7a392

Please sign in to comment.