Skip to content

Update to qemu 4.0.0 #241

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# install system deps
if [ $(which apt-get) ]; then
echo "installing deps for ubuntu"
sudo apt-get -y install git curl python python-virtualenv python-dev build-essential pkg-config zlib1g-dev libglib2.0-dev libpixman-1-dev
sudo apt-get -y install git curl python libcapstone-dev python-virtualenv python-dev build-essential pkg-config zlib1g-dev libglib2.0-dev libpixman-1-dev
else
echo "*** You'll need to install Ubuntu or get a working build env for qemu and python yourself ***"
fi
Expand Down
4 changes: 2 additions & 2 deletions tracers/qemu_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

if [ ! -d qemu/qemu ]; then
cd qemu
git clone https://github.com/geohot/qemu.git --depth 1 --branch qira
git clone https://github.com/janbbeck/qemu.git --depth 1 --branch v4.0.0-qira
cd ..
fi

cd qemu/qemu
./configure --target-list=i386-linux-user,x86_64-linux-user,arm-linux-user,ppc-linux-user,aarch64-linux-user,mips-linux-user,mipsel-linux-user --enable-tcg-interpreter --enable-debug-tcg --cpu=unknown --python=python
./configure --disable-werror --target-list=i386-linux-user,x86_64-linux-user,arm-linux-user,ppc-linux-user,aarch64-linux-user,mips-linux-user,mipsel-linux-user --enable-tcg-interpreter --enable-debug-tcg --enable-capstone --python=python
make -j$(getconf _NPROCESSORS_ONLN)