Skip to content

Commit 57c4f47

Browse files
committed
Add the --host flag to the help output in the individual build scripts
1 parent bc6df72 commit 57c4f47

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build-llvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ while [ $# -gt 0 ]; do
3131
done
3232
if [ -z "$CHECKOUT_ONLY" ]; then
3333
if [ -z "$PREFIX" ]; then
34-
echo $0 [--enable-asserts] [--full-llvm] dest
34+
echo $0 [--enable-asserts] [--full-llvm] [--host=<triple>] dest
3535
exit 1
3636
fi
3737

build-mingw-w64.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ while [ $# -gt 0 ]; do
2828
shift
2929
done
3030
if [ -z "$PREFIX" ]; then
31-
echo $0 [--skip-include-triplet-prefix] [--with-default-win32-winnt=0x601] [--with-default-msvcrt=ucrt] dest
31+
echo $0 [--skip-include-triplet-prefix] [--with-default-win32-winnt=0x601] [--with-default-msvcrt=ucrt] [--host=<triple>] dest
3232
exit 1
3333
fi
3434

install-wrappers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ while [ $# -gt 0 ]; do
1616
shift
1717
done
1818
if [ -z "$PREFIX" ]; then
19-
echo $0 dest
19+
echo $0 [--host=<triple>] dest
2020
exit 1
2121
fi
2222
mkdir -p "$PREFIX"

strip-llvm.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ while [ $# -gt 0 ]; do
1616
shift
1717
done
1818
if [ -z "$PREFIX" ]; then
19-
echo $0 dir
19+
echo $0 [--host=<triple>] dir
2020
exit 1
2121
fi
2222
cd "$PREFIX"

0 commit comments

Comments
 (0)