File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -605,6 +605,10 @@ def use_interpreter_for_simple_runs():
605
605
config .target_run_simple_swift = make_simple_target_run ()
606
606
config .available_features .add ('interpret' )
607
607
608
+ target_specific_module_triple = config .variant_triple
609
+
610
+ config .target_run = ""
611
+
608
612
if run_vendor == 'apple' :
609
613
config .available_features .add ('objc_interop' )
610
614
config .target_object_format = "macho"
@@ -1193,7 +1197,8 @@ if not kIsWindows:
1193
1197
"/usr/bin/env "
1194
1198
"DYLD_LIBRARY_PATH='{0}' " # Apple option
1195
1199
"LD_LIBRARY_PATH='{0}' " # Linux option
1196
- .format (target_stdlib_path ))
1200
+ "SIMCTL_CHILD_DYLD_LIBRARY_PATH='{0}' " # Simulator option
1201
+ .format (target_stdlib_path )) + config .target_run
1197
1202
else :
1198
1203
os_stdlib_path = ''
1199
1204
if run_vendor == 'apple' :
@@ -1205,7 +1210,8 @@ if not kIsWindows:
1205
1210
"/usr/bin/env "
1206
1211
"DYLD_LIBRARY_PATH='{0}' " # Apple option
1207
1212
"LD_LIBRARY_PATH='{0}' " # Linux option
1208
- .format (all_stdlib_path ))
1213
+ "SIMCTL_CHILD_DYLD_LIBRARY_PATH='{0}' " # Simulator option
1214
+ .format (all_stdlib_path )) + config .target_run
1209
1215
1210
1216
#
1211
1217
# When changing substitutions, update docs/Testing.rst.
You can’t perform that action at this time.
0 commit comments