fixing bugs in iVerilog installation
This commit is contained in:
parent
5332588e82
commit
2dc3a4eb1f
13
.travis.yml
13
.travis.yml
|
@ -105,14 +105,15 @@ install:
|
||||||
- |
|
- |
|
||||||
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
|
if [[ "${TRAVIS_OS_NAME}" == "linux" ]]; then
|
||||||
IVERILOG_URL="https://github.com/steveicarus/iverilog/archive/v10_3.tar.gz"
|
IVERILOG_URL="https://github.com/steveicarus/iverilog/archive/v10_3.tar.gz"
|
||||||
mkdir -p iverilog-10.3 && travis_retry wget --no-check-certificate --quiet -O - ${IVERILOG_URL} | tar --strip-components=1 -xz -C iverilog-10.3
|
travis_retry wget --no-clobber --no-check-certificate --quiet -O - ${IVERILOG_URL}
|
||||||
cd iverlog-10.3
|
tar -xzf v10_3.tar.gz
|
||||||
sh autoconf.sh --prefix=${DEPS_DIR}/iverilog-10.3/bin
|
cd iverlog-10_3
|
||||||
./configure --prefix=${DEPS_DIR}/iverilog-10.3/bin
|
sh autoconf.sh --prefix=${DEPS_DIR}/iverilog-10_3/bin
|
||||||
|
./configure --prefix=${DEPS_DIR}/iverilog-10_3/bin
|
||||||
make -j4
|
make -j4
|
||||||
make check
|
make check
|
||||||
make install --prefix=${HOME}/iverilog-10.3/bin
|
make install --prefix=${HOME}/iverilog-10_3/bin
|
||||||
export PATH=${DEPS_DIR}/iverilog-10.3/bin:${PATH}
|
export PATH=${DEPS_DIR}/iverilog-10_3/bin:${PATH}
|
||||||
echo ${PATH}
|
echo ${PATH}
|
||||||
fi
|
fi
|
||||||
- iverilog -V
|
- iverilog -V
|
||||||
|
|
Loading…
Reference in New Issue