Skip to content
This repository was archived by the owner on Dec 20, 2019. It is now read-only.

Commit 804c869

Browse files
committed
[ci] Fix 32 bit build.
1 parent 8dfa8eb commit 804c869

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

scripts/ci/run-jenkins.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,16 @@ LLVM_BASE_CONFIGURE_FLAGS="--enable-libcpp --enable-optimized --enable-assertion
1010

1111
mkdir -p build
1212
cd build
13-
../configure --prefix=$PWD/usr --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
13+
../configure --prefix=$PWD/../usr --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
1414
make -j4
1515
make install
16+
cd ..
1617
mkdir -p build32
1718
cd build32
18-
../configure --prefix=$PWD/usr32 --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
19+
../configure --prefix=$PWD/../usr32 --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
1920
make -j4
2021
make install
22+
cd ..
2123
mkdir tmp-bin
2224
cp usr/bin/{llc,opt,llvm-dis,llvm-config} tmp-bin/
2325
rm usr/bin/*

0 commit comments

Comments
 (0)