Skip to content

Commit 3d4e368

Browse files
committed
Avoid using the nonstandard "which" command
This command isn't a standard tool; different distributions have different implementations, and e.g. Fedora doesn't ship it by default. Settle on using "command -v $tool >/dev/null" for tests about whether a tool is available. (We could also use "hash $tool 2>/dev/null" as we already had in build-all.sh, but settling on using "command -v" everywhere, for consistency and simplicity.)
1 parent f2ebd64 commit 3d4e368

11 files changed

+15
-15
lines changed

build-all.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ if [ -z "$PREFIX" ]; then
6060
fi
6161

6262
for dep in git curl cmake; do
63-
if ! hash $dep 2>/dev/null; then
63+
if ! command -v $dep >/dev/null; then
6464
echo "$dep not installed. Please install it and retry" 1>&2
6565
exit 1
6666
fi

build-compiler-rt.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ if [ ! -d llvm-project/compiler-rt ] || [ -n "$SYNC" ]; then
4747
CHECKOUT_ONLY=1 ./build-llvm.sh
4848
fi
4949

50-
if [ -n "$(which ninja)" ]; then
50+
if command -v ninja >/dev/null; then
5151
CMAKE_GENERATOR="Ninja"
5252
NINJA=1
5353
BUILDCMD=ninja

build-libcxx.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ LLVM_PATH="$(pwd)/llvm"
5555

5656
cd runtimes
5757

58-
if [ -n "$(which ninja)" ]; then
58+
if command -v ninja >/dev/null; then
5959
CMAKE_GENERATOR="Ninja"
6060
NINJA=1
6161
BUILDCMD=ninja

build-libssp.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if [ $# -lt 1 ]; then
2222
fi
2323

2424
MAKE=make
25-
if [ -n "$(which gmake)" ]; then
25+
if command -v gmake >/dev/null; then
2626
MAKE=gmake
2727
fi
2828

@@ -37,7 +37,7 @@ export PATH="$PREFIX/bin:$PATH"
3737
: ${ARCHS:=${TOOLCHAIN_ARCHS-i686 x86_64 armv7 aarch64}}
3838

3939
download() {
40-
if [ -n "$(which wget)" ]; then
40+
if command -v wget >/dev/null; then
4141
if [ -n "$2" ]; then
4242
wget -O "$2" "$1"
4343
else

build-lldb-mi.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if [ -n "$SYNC" ] || [ -n "$CHECKOUT" ]; then
5151
cd ..
5252
fi
5353

54-
if [ -n "$(which ninja)" ]; then
54+
if command -v ninja >/dev/null; then
5555
CMAKE_GENERATOR="Ninja"
5656
NINJA=1
5757
BUILDCMD=ninja

build-llvm.sh

+4-4
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ fi
125125

126126
[ -z "$CHECKOUT_ONLY" ] || exit 0
127127

128-
if [ -n "$(which ninja)" ]; then
128+
if command -v ninja >/dev/null; then
129129
CMAKE_GENERATOR="Ninja"
130130
NINJA=1
131131
BUILDCMD=ninja
@@ -165,8 +165,8 @@ if [ -n "$HOST" ]; then
165165
break
166166
fi
167167
done
168-
if [ -z "$native" ] && [ -n "$(which llvm-tblgen)" ]; then
169-
native="$(dirname $(which llvm-tblgen))"
168+
if [ -z "$native" ] && command -v llvm-tblgen >/dev/null; then
169+
native="$(dirname $(command -v llvm-tblgen))"
170170
suffix=""
171171
if [ -x "$native/llvm-tblgen.exe" ]; then
172172
suffix=".exe"
@@ -191,7 +191,7 @@ if [ -n "$HOST" ]; then
191191
CMAKEFLAGS="$CMAKEFLAGS -DCLANG_PSEUDO_GEN=$native/clang-pseudo-gen$suffix"
192192
fi
193193
fi
194-
CROSS_ROOT=$(cd $(dirname $(which $HOST-gcc))/../$HOST && pwd)
194+
CROSS_ROOT=$(cd $(dirname $(command -v $HOST-gcc))/../$HOST && pwd)
195195
CMAKEFLAGS="$CMAKEFLAGS -DCMAKE_FIND_ROOT_PATH=$CROSS_ROOT"
196196
CMAKEFLAGS="$CMAKEFLAGS -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER"
197197
CMAKEFLAGS="$CMAKEFLAGS -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY"

build-make.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ PREFIX="$(cd "$PREFIX" && pwd)"
4545
: ${ARCHS:=${TOOLCHAIN_ARCHS-i686 x86_64 armv7 aarch64}}
4646

4747
download() {
48-
if [ -n "$(which wget)" ]; then
48+
if command -v wget >/dev/null; then
4949
wget "$1"
5050
else
5151
curl -LO "$1"

build-mingw-w64-tools.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ fi
4949
cd mingw-w64
5050

5151
MAKE=make
52-
if [ -n "$(which gmake)" ]; then
52+
if command -v gmake >/dev/null; then
5353
MAKE=gmake
5454
fi
5555

build-mingw-w64.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ fi
6262
[ -z "$CHECKOUT_ONLY" ] || exit 0
6363

6464
MAKE=make
65-
if [ -n "$(which gmake)" ]; then
65+
if command -v gmake >/dev/null; then
6666
MAKE=gmake
6767
fi
6868

build-openmp.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ fi
3535

3636
cd llvm-project/openmp
3737

38-
if [ -n "$(which ninja)" ]; then
38+
if command -v ninja >/dev/null; then
3939
CMAKE_GENERATOR="Ninja"
4040
NINJA=1
4141
BUILDCMD=ninja

build-python.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ if [ -z "$CHECKOUT_ONLY" ]; then
4848
fi
4949

5050
MAKE=make
51-
if [ -n "$(which gmake)" ]; then
51+
if command -v gmake >/dev/null; then
5252
MAKE=gmake
5353
fi
5454

0 commit comments

Comments
 (0)