Skip to content

Commit f88cd71

Browse files
authored
Utilities/bootstrap: also use Swift's clang for llbuild
1 parent 2553587 commit f88cd71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Utilities/bootstrap

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -529,8 +529,8 @@ def build_llbuild(args):
529529
call(["touch", "codemodel-v2"], cwd=api_dir, verbose=args.verbose)
530530

531531
flags = [
532-
"-DCMAKE_C_COMPILER:=clang",
533-
"-DCMAKE_CXX_COMPILER:=clang++",
532+
"-DCMAKE_C_COMPILER:=%s" % (args.clang_path),
533+
"-DCMAKE_CXX_COMPILER:=%s" % (args.clang_path),
534534
"-DLLBUILD_SUPPORT_BINDINGS:=Swift",
535535
]
536536

0 commit comments

Comments
 (0)