From: Joseph Myers Date: Fri, 11 Jul 2008 11:15:07 +0000 (+0100) Subject: mh-mingw (LDFLAGS): Append to rather than replacing previous value. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=d5e1c95e49927a55aef30e2c8f4091fdd49aba2d;p=gcc.git mh-mingw (LDFLAGS): Append to rather than replacing previous value. * mh-mingw (LDFLAGS): Append to rather than replacing previous value. From-SVN: r137714 --- diff --git a/config/ChangeLog b/config/ChangeLog index ff2d7b0c39c..e64c1cab72e 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2008-07-11 Joseph Myers + + * mh-mingw (LDFLAGS): Append to rather than replacing previous + value. + 2008-06-17 Ralf Wildenhues * override.m4: Use m4_version_prereq throughout. diff --git a/config/mh-mingw b/config/mh-mingw index e31bfd323b4..4c49d5d5917 100644 --- a/config/mh-mingw +++ b/config/mh-mingw @@ -3,4 +3,4 @@ BOOT_CFLAGS += -D__USE_MINGW_ACCESS CFLAGS += -D__USE_MINGW_ACCESS # Increase stack limit to same as Linux default. -LDFLAGS = -Wl,--stack,8388608 +LDFLAGS += -Wl,--stack,8388608