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 172a0aa commit d75be55Copy full SHA for d75be55
Utilities/bootstrap
@@ -586,7 +586,10 @@ class llbuild(object):
586
link_command.extend(
587
["-Xlinker", "-rpath=$ORIGIN/../lib/swift/linux"])
588
if self.args.foundation_path:
589
- link_command.extend(["-L", self.args.foundation_path])
+ link_command.extend([
590
+ "-L", self.args.foundation_path,
591
+ "-L", os.path.join(self.args.foundation_path, "Foundation")
592
+ ])
593
if self.args.libdispatch_build_dir:
594
link_command.extend(['-L', self.args.libdispatch_build_dir,
595
'-L', os.path.join(self.args.libdispatch_build_dir, 'lib'),
0 commit comments