Skip to content

Commit f12d014

Browse files
committed
[bootstrap] Prefix -F with -Xcc for corelibs
1 parent 8cdced9 commit f12d014

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Utilities/bootstrap

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@ class Target(object):
254254

255255
if args.foundation_path:
256256
import_paths.append(args.foundation_path)
257-
other_args.extend(["-F", os.path.join(args.foundation_path, "CoreFoundation-prefix", "System", "Library", "Frameworks")])
257+
other_args.extend(["-Xcc", "-F" + os.path.join(args.foundation_path, "CoreFoundation-prefix", "System", "Library", "Frameworks")])
258258
import_paths.append(os.path.join(args.foundation_path, "swift"))
259259
if args.libdispatch_build_dir:
260260
import_paths.append(os.path.join(args.libdispatch_build_dir, "src"))

0 commit comments

Comments
 (0)