-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added report1 (c0e1adc1fc31de5d8a0cf6f0250f397035023caa)
- Loading branch information
andri
committed
Nov 22, 2019
1 parent
762e5de
commit 7c9b8e7
Showing
4 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/bash | ||
# Copyright (c) 2019 ETH Zurich, Integrated System Laboratory, Renzo Andri | ||
|
||
# Dependencies | ||
# centos: sudo yum install autoconf automake libmpc-devel mpfr-devel gmp-devel gawk bison flex texinfo patchutils gcc gcc-c++ zlib-devel | ||
# ubuntu16: sudo apt-get install autoconf automake autotools-dev curl libmpc-dev libmpfr-dev libgmp-dev gawk build-essential bison flex texinfo gperf libtool patchutils bc zlib1g-dev | ||
|
||
export postfix="CentOS" | ||
|
||
git clone --recursive https://github.com/pulp-platform/pulp-riscv-gnu-toolchain pulp-riscv-gnu-toolchain_$postfix | ||
|
||
cd pulp-riscv-gnu-toolchain_$postfix | ||
git checkout isa-renzo | ||
|
||
echo "Make PULP" | ||
./configure --prefix=$(pwd)/opt-riscv/ --with-arch=rv32imc --with-cmodel=medlow --enable-multilib | ||
make | ||
cd ../ | ||
|
||
|
||
|
||
|