diff options
author | Clifford Wolf <clifford@clifford.at> | 2016-03-25 09:16:45 +0100 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2016-03-25 09:16:45 +0100 |
commit | a922d705d4c5e5c2f0cfc59f31fa11901ef307e1 (patch) | |
tree | 18c909525a7a26d10b3a9244dc02e80274c52750 /tests | |
parent | 5328a851490588d6162ca0edaad5ed713bc75401 (diff) | |
parent | e14055edf06f4551f220b3875a95d8c25b8b7aae (diff) | |
download | yosys-a922d705d4c5e5c2f0cfc59f31fa11901ef307e1.tar.gz yosys-a922d705d4c5e5c2f0cfc59f31fa11901ef307e1.tar.bz2 yosys-a922d705d4c5e5c2f0cfc59f31fa11901ef307e1.zip |
Merge pull request #136 from ravenexp/master
Minor Makefile adjustments
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/tools/autotest.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/tools/autotest.sh b/tests/tools/autotest.sh index 76668bede..840cb19ff 100755 --- a/tests/tools/autotest.sh +++ b/tests/tools/autotest.sh @@ -16,7 +16,7 @@ toolsdir="$(cd $(dirname $0); pwd)" warn_iverilog_git=false if [ ! -f $toolsdir/cmp_tbdata -o $toolsdir/cmp_tbdata.c -nt $toolsdir/cmp_tbdata ]; then - ( set -ex; gcc -Wall -o $toolsdir/cmp_tbdata $toolsdir/cmp_tbdata.c; ) || exit 1 + ( set -ex; ${CC:-gcc} -Wall -o $toolsdir/cmp_tbdata $toolsdir/cmp_tbdata.c; ) || exit 1 fi while getopts xmGl:wkjvref:s:p:n: opt; do |