We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81910bf commit b58fed9Copy full SHA for b58fed9
test/embedded/lit.local.cfg
@@ -0,0 +1,12 @@
1
+# Make a local copy of the substitutions.
2
+config.substitutions = list(config.substitutions)
3
+
4
+if config.target_sdk_name == 'macosx':
5
+ def do_fixup(key, value):
6
+ if isinstance(value, str):
7
+ value = value.replace("-apple-macosx10.13", "-apple-macos14")
8
+ elif isinstance(value, SubstituteCaptures):
9
+ value.substitution = value.substitution.replace("-apple-macosx10.13", "-apple-macos14")
10
+ return (key, value)
11
12
+ config.substitutions = [do_fixup(a, b) for (a, b) in config.substitutions]
0 commit comments