Skip to content

Commit 37daec7

Browse files
committed
build-all: Allow passing more options through to build-llvm.sh
1 parent c6001d3 commit 37daec7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build-all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ HOST_ARGS=""
2424

2525
while [ $# -gt 0 ]; do
2626
case "$1" in
27-
--enable-asserts|--disable-dylib)
27+
--enable-asserts|--disable-dylib|--with-clang|--thinlto)
2828
LLVM_ARGS="$LLVM_ARGS $1"
2929
;;
3030
--host-clang|--host-clang=*)
@@ -84,7 +84,7 @@ while [ $# -gt 0 ]; do
8484
shift
8585
done
8686
if [ -z "$PREFIX" ]; then
87-
echo "$0 [--host-clang[=clang]] [--enable-asserts] [--disable-dylib] [--full-llvm] [--disable-lldb] [--disable-lldb-mi] [--disable-clang-tools-extra] [--host=triple] [--with-default-win32-winnt=0x601] [--with-default-msvcrt=ucrt] [--enable-cfguard|--disable-cfguard] [--no-runtimes] [--no-tools] [--wipe-runtimes] [--clean-runtimes] dest"
87+
echo "$0 [--host-clang[=clang]] [--enable-asserts] [--disable-dylib] [--with-clang] [--thinlto] [--full-llvm] [--disable-lldb] [--disable-lldb-mi] [--disable-clang-tools-extra] [--host=triple] [--with-default-win32-winnt=0x601] [--with-default-msvcrt=ucrt] [--enable-cfguard|--disable-cfguard] [--no-runtimes] [--no-tools] [--wipe-runtimes] [--clean-runtimes] dest"
8888
exit 1
8989
fi
9090

0 commit comments

Comments
 (0)