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 8409530 commit a9501e0Copy full SHA for a9501e0
test/lit.cfg
@@ -919,8 +919,8 @@ if run_os in ('maccatalyst',):
919
target_os_abi = 'macosx'
920
target_os_is_maccatalyst = "TRUE"
921
config.available_features.add("OS=ios")
922
-# macOS on ASi uses the stable ABI
923
-if run_os in ('macosx',) and run_cpu in ('arm64',):
+# macOS and simulators on ASi use the stable ABI
+if (run_os in ('macosx',) or 'simulator' in run_environment) and run_cpu in ('arm64',):
924
target_mandates_stable_abi = "TRUE"
925
config.available_features.add('swift_only_stable_abi')
926
if run_os in (
0 commit comments