-1

I try to install the riscv-tools following the instructions from http://riscv.org/software-tools/. However, I meet problems when I build riscv-isa-sim and the error information is as follows: Error information when build the riscv-isa-sim

I am working on Ubuntu-15.10 and thanks a lot.

xun
  • 1
  • 2

2 Answers2

1

Try with

CC=gcc-4.8 CXX=g++-4.8 ./build.sh

In case you are using the default version of GCC of Ubuntu 15.10 use only

./build.sh

Also, did you install all the dependencies?

A.Ramos
  • 98
  • 7
0

Make sure that you clone the riscv-tools specified in rocket-chip.

git submodule update --init --recursive
P.N. Lee
  • 31
  • 4