Skip to content

Commit

Permalink
Apply smurfd's patch (geohot#258)
Browse files Browse the repository at this point in the history
  • Loading branch information
DorianRudolph committed Jul 23, 2022
1 parent 5f34406 commit 374b3ea
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,10 @@
if [ $(which apt-get) ]; then
echo "installing deps for ubuntu"
sudo apt-get -y install git curl python python-dev python3-pip build-essential pkg-config zlib1g-dev libglib2.0-dev libpixman-1-dev
sudo pip3 install virtualenv
# install pip2
curl https://bootstrap.pypa.io/pip/2.7/get-pip.py --output get-pip.py
sudo python2 get-pip.py
sudo pip2 install virtualenv

else
echo "*** You'll need to install Ubuntu or get a working build env for qemu and python yourself ***"
Expand Down
2 changes: 1 addition & 1 deletion tracers/qemu_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ if [ ! -d qemu/qemu ]; then
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 --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=python2.7 --disable-werror
make -j$(getconf _NPROCESSORS_ONLN)

0 comments on commit 374b3ea

Please sign in to comment.