Skip to content

Commit 4b7a4f5

Browse files
committed
[build-script-impl] When building parts of Swift without LLVM, always at least build FileCheck/not from LLVM.
These are common utilities used when testing with lit, so it makes sense to always include them so in these cases we can use them for testing purposes.
1 parent 9e819ea commit 4b7a4f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/build-script-impl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2150,8 +2150,8 @@ for host in "${ALL_HOSTS[@]}"; do
21502150
fi
21512151
if [ "${SKIP_BUILD_LLVM}" ] ; then
21522152
# We can't skip the build completely because the standalone
2153-
# build of Swift depend on these.
2154-
build_targets=(llvm-tblgen clang-headers intrinsics_gen clang-tablegen-targets)
2153+
# build of Swift depend on these for testing etc.
2154+
build_targets=(llvm-tblgen clang-headers intrinsics_gen clang-tablegen-targets FileCheck not)
21552155
fi
21562156

21572157
if [ "${HOST_LIBTOOL}" ] ; then

0 commit comments

Comments
 (0)