aboutsummaryrefslogtreecommitdiff
path: root/VexRiscv/src/test/cpp/briey/installs.txt
diff options
context:
space:
mode:
Diffstat (limited to 'VexRiscv/src/test/cpp/briey/installs.txt')
-rw-r--r--VexRiscv/src/test/cpp/briey/installs.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/VexRiscv/src/test/cpp/briey/installs.txt b/VexRiscv/src/test/cpp/briey/installs.txt
new file mode 100644
index 0000000..3cef523
--- /dev/null
+++ b/VexRiscv/src/test/cpp/briey/installs.txt
@@ -0,0 +1,22 @@
+sudo apt-get install libYAML-dev
+
+
+sudo apt-get update
+sudo apt-get install build-essential software-properties-common -y
+sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
+sudo apt-get update
+sudo apt-get install gcc-6 g++-6 -y
+sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 60 --slave /usr/bin/g++ g++ /usr/bin/g++-6
+
+
+wget -O boost_1_64_0.tar.gz http://sourceforge.net/projects/boost/files/boost/1.64.0/boost_1_64_0.tar.gz/download
+tar xzvf boost_1_64_0.tar.gz
+cd boost_1_64_0/
+./bootstrap.sh --prefix=/usr/local
+./b2
+sudo ./b2 install
+
+
+
+echo "using gcc : 6.3 : /usr/bin/g++-6 ; " >> tools/build/src/user-config.jam
+bjam --toolset=gcc-6