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

Commit

Permalink
[ci] Fix 32 bit build.
Browse files Browse the repository at this point in the history
  • Loading branch information
vargaz committed Dec 16, 2017
1 parent 8dfa8eb commit 804c869
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions scripts/ci/run-jenkins.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,16 @@ LLVM_BASE_CONFIGURE_FLAGS="--enable-libcpp --enable-optimized --enable-assertion

mkdir -p build
cd build
../configure --prefix=$PWD/usr --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
../configure --prefix=$PWD/../usr --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
make -j4
make install
cd ..
mkdir -p build32
cd build32
../configure --prefix=$PWD/usr32 --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
../configure --prefix=$PWD/../usr32 --enable-targets="arm arm64" $LLVM_BASE_CONFIGURE_FLAGS CXXFLAGS="-Qunused-arguments"
make -j4
make install
cd ..
mkdir tmp-bin
cp usr/bin/{llc,opt,llvm-dis,llvm-config} tmp-bin/
rm usr/bin/*
Expand Down

0 comments on commit 804c869

Please sign in to comment.