Updated qemu install script

* Use separate build dir
* remove build directory afterwards, this saves quite some space in VMs...
* some minor improvements
This commit is contained in:
Michael Rodler 2018-04-20 15:00:18 +02:00 committed by Yan
parent 94032b49cd
commit 0c64793157

View file

@ -3,26 +3,40 @@
find_latest_qemu_version() { find_latest_qemu_version() {
git ls-remote --tags git://git.qemu.org/qemu.git \ git ls-remote --tags git://git.qemu.org/qemu.git \
| grep -v '\-rc' \ | grep -v '\-rc' \
| grep -oh 'v[0-9]\{1,2\}\.[0-9]\{1,2\}\.[0-9]\{1,2\}\(\.[0-9]\{0,2\}\)\?' \ | grep -oh 'v[0-9]\{1,2\}\.[0-9]\{1,2\}\(\.[0-9]\{1,2\}\(\.[0-9]\{0,2\}\)\?\)\?' \
| sort --version-sort -r \ | sort --version-sort -r \
| head -n 1 | head -n 1
} }
#VERSION=v2.10.1 #VERSION=v2.10.1
VERSION=$(find_latest_qemu_version) VERSION=$(find_latest_qemu_version)
echo $VERSION > qemu_version
git clone --depth=1 -b "$VERSION" git://git.qemu-project.org/qemu.git git clone --depth=1 -b "$VERSION" git://git.qemu-project.org/qemu.git
set +x
source ctf-tools-venv-activate source ctf-tools-venv-activate
set -x
prefix="--prefix=$(pwd)" prefix="--prefix=$(pwd)"
python="--python=$(which python)" python="--python=$(which python)"
build_flags=""
cd qemu mkdir build
if ! ./configure "$prefix" "$python"; then pushd build
if ! ../qemu/configure "$prefix" "$python" $build_flags; then
echo "Updating QEMU submodules in case dependencies are missing" echo "Updating QEMU submodules in case dependencies are missing"
pushd ../qemu/
git submodule init git submodule init
git submodule update --recursive git submodule update --recursive
./configure "$prefix" "$python" popd
# redo configure step
../qemu/configure "$prefix" "$python" $build_flags
fi fi
make -j $(nproc) make -j $(nproc)
make install make install
# remove build artifacts - qemu is huge otherwise...
make clean
popd
rm -rf build