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.
DYLD_LIBRARY_PATH
1 parent 7ead791 commit f3d7ca0Copy full SHA for f3d7ca0
Utilities/bootstrap
@@ -755,12 +755,12 @@ def get_swiftpm_env_cmd(args):
755
os.path.join(args.build_dirs["swift-collections"], "lib"),
756
os.path.join(args.build_dirs["swift-asn1"], "lib"),
757
os.path.join(args.build_dirs["swift-certificates"], "lib"),
758
- ] + args.target_info["paths"]["runtimeLibraryPaths"])
+ ]
759
760
if platform.system() == 'Darwin':
761
env_cmd.append("DYLD_LIBRARY_PATH=%s" % libs_joined)
762
else:
763
- env_cmd.append("LD_LIBRARY_PATH=%s" % libs_joined)
+ env_cmd.append("LD_LIBRARY_PATH=%s" % libs_joined + args.target_info["paths"]["runtimeLibraryPaths"]))
764
765
return env_cmd
766
0 commit comments