aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorumarcor <unai.martinezcorral@ehu.eus>2020-10-23 04:23:53 +0200
committertgingold <tgingold@users.noreply.github.com>2020-10-24 20:33:13 +0200
commitd7a52814daf48d529f85639dbee25f2191344d6e (patch)
tree6421b1dca21679931376f2720995b647487b52f5 /configure
parentc5b094bbdbcea5cb27dab89f78b9a9f0980a1eb7 (diff)
downloadghdl-d7a52814daf48d529f85639dbee25f2191344d6e.tar.gz
ghdl-d7a52814daf48d529f85639dbee25f2191344d6e.tar.bz2
ghdl-d7a52814daf48d529f85639dbee25f2191344d6e.zip
configure: detect 'x86_64-w64-windows-gnu' as a Windows platform
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index cb95a2af6..83d9b2628 100755
--- a/configure
+++ b/configure
@@ -294,7 +294,7 @@ fi
# Define default file extensions for Windows or Linux-like systems and
# use -fPIC or not.
case "$build" in
- *mingw* | *cygwin*) SOEXT=".dll"; EXEEXT=".exe"; PIC_FLAGS="";;
+ *mingw* | *cygwin* | *windows-gnu*) SOEXT=".dll"; EXEEXT=".exe"; PIC_FLAGS="";;
*darwin*) SOEXT=".dylib"; EXEEXT=""; PIC_FLAGS="";;
*) SOEXT=".so"; EXEEXT=""; PIC_FLAGS="-fPIC";;
esac