forked from mesonbuild/meson
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
depenencies/llvm: Handle llvm-config --shared-mode failing (mesonbuil…
…d#7379) * depenencies/llvm: Handle llvm-config --shared-mode failing Fixes: mesonbuild#7371 Fixes: mesonbuild#7878 * test cases/llvm: Refactor to use test.json Instead of trying to cover everything internally
- Loading branch information
Showing
5 changed files
with
68 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
option( | ||
'method', | ||
type : 'combo', | ||
choices : ['config-tool', 'cmake'] | ||
) | ||
option( | ||
'link-static', | ||
type : 'boolean', | ||
value : false, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
{ | ||
"matrix": { | ||
"options": { | ||
"method": [ | ||
{ "val": "config-tool" }, | ||
{ "val": "cmake" } | ||
], | ||
"link-static": [ | ||
{ "val": true }, | ||
{ "val": false } | ||
] | ||
}, | ||
"exclude": [ | ||
{ "method": "cmake", "link-static": false } | ||
] | ||
} | ||
} |