File tree 11 files changed +15
-15
lines changed
11 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ if [ -z "$PREFIX" ]; then
60
60
fi
61
61
62
62
for dep in git curl cmake; do
63
- if ! hash $dep 2 > /dev/null; then
63
+ if ! command -v $dep > /dev/null; then
64
64
echo " $dep not installed. Please install it and retry" 1>&2
65
65
exit 1
66
66
fi
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ if [ ! -d llvm-project/compiler-rt ] || [ -n "$SYNC" ]; then
47
47
CHECKOUT_ONLY=1 ./build-llvm.sh
48
48
fi
49
49
50
- if [ -n " $( which ninja) " ] ; then
50
+ if command -v ninja > /dev/null ; then
51
51
CMAKE_GENERATOR=" Ninja"
52
52
NINJA=1
53
53
BUILDCMD=ninja
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ LLVM_PATH="$(pwd)/llvm"
55
55
56
56
cd runtimes
57
57
58
- if [ -n " $( which ninja) " ] ; then
58
+ if command -v ninja > /dev/null ; then
59
59
CMAKE_GENERATOR=" Ninja"
60
60
NINJA=1
61
61
BUILDCMD=ninja
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ if [ $# -lt 1 ]; then
22
22
fi
23
23
24
24
MAKE=make
25
- if [ -n " $( which gmake) " ] ; then
25
+ if command -v gmake > /dev/null ; then
26
26
MAKE=gmake
27
27
fi
28
28
@@ -37,7 +37,7 @@ export PATH="$PREFIX/bin:$PATH"
37
37
: ${ARCHS:= ${TOOLCHAIN_ARCHS-i686 x86_64 armv7 aarch64} }
38
38
39
39
download () {
40
- if [ -n " $( which wget) " ] ; then
40
+ if command -v wget > /dev/null ; then
41
41
if [ -n " $2 " ]; then
42
42
wget -O " $2 " " $1 "
43
43
else
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ if [ -n "$SYNC" ] || [ -n "$CHECKOUT" ]; then
51
51
cd ..
52
52
fi
53
53
54
- if [ -n " $( which ninja) " ] ; then
54
+ if command -v ninja > /dev/null ; then
55
55
CMAKE_GENERATOR=" Ninja"
56
56
NINJA=1
57
57
BUILDCMD=ninja
Original file line number Diff line number Diff line change 125
125
126
126
[ -z " $CHECKOUT_ONLY " ] || exit 0
127
127
128
- if [ -n " $( which ninja) " ] ; then
128
+ if command -v ninja > /dev/null ; then
129
129
CMAKE_GENERATOR=" Ninja"
130
130
NINJA=1
131
131
BUILDCMD=ninja
@@ -165,8 +165,8 @@ if [ -n "$HOST" ]; then
165
165
break
166
166
fi
167
167
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) ) "
170
170
suffix=" "
171
171
if [ -x " $native /llvm-tblgen.exe" ]; then
172
172
suffix=" .exe"
@@ -191,7 +191,7 @@ if [ -n "$HOST" ]; then
191
191
CMAKEFLAGS=" $CMAKEFLAGS -DCLANG_PSEUDO_GEN=$native /clang-pseudo-gen$suffix "
192
192
fi
193
193
fi
194
- CROSS_ROOT=$( cd $( dirname $( which $HOST -gcc) ) /../$HOST && pwd)
194
+ CROSS_ROOT=$( cd $( dirname $( command -v $HOST -gcc) ) /../$HOST && pwd)
195
195
CMAKEFLAGS=" $CMAKEFLAGS -DCMAKE_FIND_ROOT_PATH=$CROSS_ROOT "
196
196
CMAKEFLAGS=" $CMAKEFLAGS -DCMAKE_FIND_ROOT_PATH_MODE_PROGRAM=NEVER"
197
197
CMAKEFLAGS=" $CMAKEFLAGS -DCMAKE_FIND_ROOT_PATH_MODE_INCLUDE=ONLY"
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ PREFIX="$(cd "$PREFIX" && pwd)"
45
45
: ${ARCHS:= ${TOOLCHAIN_ARCHS-i686 x86_64 armv7 aarch64} }
46
46
47
47
download () {
48
- if [ -n " $( which wget) " ] ; then
48
+ if command -v wget > /dev/null ; then
49
49
wget " $1 "
50
50
else
51
51
curl -LO " $1 "
Original file line number Diff line number Diff line change 49
49
cd mingw-w64
50
50
51
51
MAKE=make
52
- if [ -n " $( which gmake) " ] ; then
52
+ if command -v gmake > /dev/null ; then
53
53
MAKE=gmake
54
54
fi
55
55
Original file line number Diff line number Diff line change 62
62
[ -z " $CHECKOUT_ONLY " ] || exit 0
63
63
64
64
MAKE=make
65
- if [ -n " $( which gmake) " ] ; then
65
+ if command -v gmake > /dev/null ; then
66
66
MAKE=gmake
67
67
fi
68
68
Original file line number Diff line number Diff line change 35
35
36
36
cd llvm-project/openmp
37
37
38
- if [ -n " $( which ninja) " ] ; then
38
+ if command -v ninja > /dev/null ; then
39
39
CMAKE_GENERATOR=" Ninja"
40
40
NINJA=1
41
41
BUILDCMD=ninja
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ if [ -z "$CHECKOUT_ONLY" ]; then
48
48
fi
49
49
50
50
MAKE=make
51
- if [ -n " $( which gmake) " ] ; then
51
+ if command -v gmake > /dev/null ; then
52
52
MAKE=gmake
53
53
fi
54
54
You can’t perform that action at this time.
0 commit comments