forked from panda-re/panda
-
Notifications
You must be signed in to change notification settings - Fork 3
/
install_osx.sh
executable file
·74 lines (65 loc) · 1.74 KB
/
install_osx.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
# This is just everything in compile.md
# turned into a script
# you should be able to run it, type in
# sudo passwd and have it install all of panda.
# Verified that this script works
# from a clean install of OS X El Capitan.
#
progress() {
echo
echo -e "[32m[panda_install][0m [1m$1[0m"
}
# Exit on error.
set -e
progress "Installing homebrew..."
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
progress "Installing qemu dependencies..."
brew install $(brew deps qemu)
brew install dtc pkg-config
progress "Installing PANDA dependencies..."
brew install moyix/homebrew-libdwarf/libdwarf
brew install capstone
brew install homebrew/versions/llvm33
brew install protobuf-c
if [ ! -e "$(which pip)" ]
then
progress "Python pip not found, installing it..."
sudo -H easy_install pip
fi
if python -c 'import pycparser' 2>/dev/null
then
if python <<EOF
import sys
import pycparser
version = [int(x) for x in pycparser.__version__.split(".")]
if version[0] < 2 or (version[0] == 2 and version[1] < 10):
print "pycparser too old. Please upgrade it!"
sys.exit(1)
else:
print "pycparser version good."
sys.exit(0)
EOF
then
progress "Skipping pycparser..."
else
progress "Your pycparser is too old. Please upgrade using your method of choice."
exit 1
fi
else
progress "Installing pycparser..."
sudo -H pip install pycparser
fi
if [ ! -e "build.sh" ]
then
progress "Cloning PANDA into $(pwd) ..."
git clone --depth=1 https://github.com/panda-re/panda.git
cd panda
else
progress "Already in PANDA directory."
fi
progress "Building PANDA..."
mkdir build
cd build
../build.sh
progress "PANDA is built and ready to use in panda/build/[arch]-softmmu/panda-system-[arch]."