summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCamm Maguire <camm@debian.org>2014-04-08 16:17:51 +0000
committerCamm Maguire <camm@debian.org>2014-04-21 14:31:22 +0000
commitb96a73662e8b4eeca8087cbee0c7a26332e46919 (patch)
tree941d353cd01b0fa2e75b676d7e93eb80549038ef
parent3df664c13adf3585c166c3eccda40a314f8a031a (diff)
downloadgcl-b96a73662e8b4eeca8087cbee0c7a26332e46919.tar.gz
-fno-zero-initialized-in-bss for cygwin
-rwxr-xr-xgcl/configure2
-rw-r--r--gcl/configure.in2
2 files changed, 2 insertions, 2 deletions
diff --git a/gcl/configure b/gcl/configure
index 029e9dac..ab489f1a 100755
--- a/gcl/configure
+++ b/gcl/configure
@@ -5164,7 +5164,7 @@ if test "$GCC" = "yes" ; then
TCFLAGS="$TCFLAGS -pipe -Wall "
case $use in
- *mingw*)
+ *mingw*||*gnuwin*)
echo "WARNING: Remove -fno-zero-initialized-in-bss from makedefs if gcc less than 3.3.1."
echo " It is ptherwise needed for the Unexec stuff to work."
TCFLAGS="$TCFLAGS -fno-zero-initialized-in-bss -mms-bitfields $win_flags";;
diff --git a/gcl/configure.in b/gcl/configure.in
index 3cff9351..f800482e 100644
--- a/gcl/configure.in
+++ b/gcl/configure.in
@@ -504,7 +504,7 @@ if test "$GCC" = "yes" ; then
TCFLAGS="$TCFLAGS -pipe -Wall "
case $use in
- *mingw*)
+ *mingw*||*gnuwin*)
echo "WARNING: Remove -fno-zero-initialized-in-bss from makedefs if gcc less than 3.3.1."
echo " It is ptherwise needed for the Unexec stuff to work."
TCFLAGS="$TCFLAGS -fno-zero-initialized-in-bss -mms-bitfields $win_flags";;