diff options
author | tgingold <tgingold@users.noreply.github.com> | 2022-05-31 07:27:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-31 07:27:59 +0200 |
commit | 45303bcb54ad76c46ef39cffd74130cebe3536eb (patch) | |
tree | 59e7acc13afeb055eeeb753e7fc7ffc72e4dc753 | |
parent | 196b09e4568e70bcfb435375e47b77df154fc29f (diff) | |
parent | 6d9b56ba0a54a896ef4cafdc1ab1ca2595a07eb4 (diff) | |
download | ghdl-45303bcb54ad76c46ef39cffd74130cebe3536eb.tar.gz ghdl-45303bcb54ad76c46ef39cffd74130cebe3536eb.tar.bz2 ghdl-45303bcb54ad76c46ef39cffd74130cebe3536eb.zip |
Merge pull request #2067 from sudden6/fix_configure
use --version flag to check for C compiler
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,7 +204,7 @@ if ! $GNATMAKE --version >/dev/null 2>&1; then fi # Check that compiler exists -if ! $CC -v 2> /dev/null; then +if ! $CC --version 2> /dev/null; then echo "Sorry, you need a C compiler to build GHDL. See the README" exit 1 fi |