diff options
author | Eddie Hung <eddie@fpgeh.com> | 2019-08-14 12:16:02 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2019-08-23 12:29:57 -0700 |
commit | fdc438e551f5ee13a62e216b861237b2195d9131 (patch) | |
tree | 41525e61185c076c52c46c61368471e08a16397d | |
parent | bf40f2f895ab5a5ebe047e9281d5ba8707e04e94 (diff) | |
download | yosys-fdc438e551f5ee13a62e216b861237b2195d9131.tar.gz yosys-fdc438e551f5ee13a62e216b861237b2195d9131.tar.bz2 yosys-fdc438e551f5ee13a62e216b861237b2195d9131.zip |
Bump to gcc-5 as `__warn_memset_zero_len' symbol not in 16.04!?!
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/.travis.yml b/.travis.yml index bc07c741e..093dd2dbf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,12 +13,14 @@ env: matrix: include: - # Latest gcc-4.8, earliest version supported by Travis + # Earliest gcc version that works + # 4.8 and 4.9 fails to compile iverilog giving: + # "undefined reference to `__warn_memset_zero_len'" - os: linux addons: apt: packages: - - g++-4.9 + - g++-5 - gperf - build-essential - bison @@ -37,7 +39,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-5 && CXX=g++-5" # Latest gcc supported on Travis Linux - os: linux |