Skip to content

Commit

Permalink
Merge pull request #2663 from aciidb0mb3r/fix-install-name
Browse files Browse the repository at this point in the history
[bootstrap] Use the right install name for PackageDescription
  • Loading branch information
shahmishal committed Mar 24, 2020
2 parents 0bd6361 + 1b74499 commit 61ed0e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Utilities/bootstrap
Expand Up @@ -667,7 +667,8 @@ def process_runtime_libraries(build, args, lib_path):
"-Xlinker", "-all_load",
input_lib_path,
"-sdk", args.sysroot,
"-target", "x86_64-apple-macosx10.10"]
"-target", "x86_64-apple-macosx10.10",
"-Xlinker", "-install_name", "-Xlinker", "@rpath/libPackageDescription.dylib"]
else:
# We include an RPATH entry so that the Swift libraries can be found
# relative to where it will be installed (in 'lib/swift/pm/<version>/...').
Expand Down

0 comments on commit 61ed0e0

Please sign in to comment.