diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-14 12:28:17 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-23 12:29:57 -0700 |
commit | 4a4e28b55eb24ec4e83b092bf8478bb8149669c0 (patch) | |
tree | 58943f973fe863eabea9cb67e32415410c2c7e8b | |
parent | b3dc28cf65dcadd9038ff068be239e2f81f504f4 (diff) | |
download | yosys-4a4e28b55eb24ec4e83b092bf8478bb8149669c0.tar.gz yosys-4a4e28b55eb24ec4e83b092bf8478bb8149669c0.tar.bz2 yosys-4a4e28b55eb24ec4e83b092bf8478bb8149669c0.zip |
Revert earliest to gcc-4.8, compile iverilog with default compiler
-rw-r--r-- | .travis.yml | 4 | ||||
-rwxr-xr-x | .travis/setup.sh | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index 61ade0e7a..c253b2ff7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -18,7 +18,7 @@ matrix: addons: apt: packages: - - g++-4.9 + - g++-4.8 - gperf - build-essential - bison @@ -37,7 +37,7 @@ matrix: - libboost-python-dev - libboost-filesystem-dev env: - - MATRIX_EVAL="CONFIG=gcc && CC=gcc-4.9 && CXX=g++-4.9" + - MATRIX_EVAL="CONFIG=gcc && CC=gcc-4.8 && CXX=g++-4.8" # Latest gcc supported on Travis Linux - os: linux diff --git a/.travis/setup.sh b/.travis/setup.sh index 4af0b8ee9..02879b974 100755 --- a/.travis/setup.sh +++ b/.travis/setup.sh @@ -51,7 +51,7 @@ fi git clone git://github.com/steveicarus/iverilog.git cd iverilog autoconf - ./configure --prefix=$HOME/.local-bin + CC=gcc CXX=g++ ./configure --prefix=$HOME/.local-bin make make install echo |