diff options
author | Joseph Myers <joseph@codesourcery.com> | 2008-06-08 16:19:22 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2008-06-08 16:19:22 +0000 |
commit | 64a1df3ea7cc88b1cc6a87afcd2c025def6ea741 (patch) | |
tree | 9b5085605da5cd131d63b42a367c220288ef028e /config | |
parent | 7cb5408f3612f811b8e4f289a81362231a2d45a8 (diff) | |
download | binutils-redhat-64a1df3ea7cc88b1cc6a87afcd2c025def6ea741.tar.gz |
* Makefile.def (flags_to_pass): Add LDFLAGS_FOR_BUILD.
* Makefile.tpl (EXTRA_BUILD_FLAGS): Define.
(all prefix="build-"): Pass them to build-system sub-makes.
* Makefile.in: Regenerate.
config:
* config/mh-mingw (LDFLAGS): Define.
Diffstat (limited to 'config')
-rw-r--r-- | config/ChangeLog | 5 | ||||
-rw-r--r-- | config/mh-mingw | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index f7548c3faf..55d74f668a 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2008-06-08 Joseph Myers <joseph@codesourcery.com> + + PR tree-optimization/36218 + * config/mh-mingw (LDFLAGS): Define. + 2008-06-05 Danny Smith <dannysmith@users.sourceforge.net> PR driver/35916 diff --git a/config/mh-mingw b/config/mh-mingw index 5a38cdb454..e31bfd323b 100644 --- a/config/mh-mingw +++ b/config/mh-mingw @@ -2,3 +2,5 @@ # Vista (see PR33281 for details). BOOT_CFLAGS += -D__USE_MINGW_ACCESS CFLAGS += -D__USE_MINGW_ACCESS +# Increase stack limit to same as Linux default. +LDFLAGS = -Wl,--stack,8388608 |