diff options
-rw-r--r-- | config/ChangeLog | 5 | ||||
-rw-r--r-- | config/mh-mingw | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/config/ChangeLog b/config/ChangeLog index 84cb7ff..e5dfc51 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,3 +1,8 @@ +2008-11-21 Kai Tietz <kai.tietz@onevision.com> + + Fix PR/25502 + * mh-mingw (BOOT_CFLAGS): Add -Wno-pedantic-ms-format switch. + 2008-11-12 Steve Ellcey <sje@cup.hp.com> PR target/27880 diff --git a/config/mh-mingw b/config/mh-mingw index 4c49d5d..d91323e 100644 --- a/config/mh-mingw +++ b/config/mh-mingw @@ -1,6 +1,6 @@ # Add -D__USE_MINGW_ACCESS to enable the built compiler to work on Windows # Vista (see PR33281 for details). -BOOT_CFLAGS += -D__USE_MINGW_ACCESS +BOOT_CFLAGS += -D__USE_MINGW_ACCESS -Wno-pedantic-ms-format CFLAGS += -D__USE_MINGW_ACCESS # Increase stack limit to same as Linux default. LDFLAGS += -Wl,--stack,8388608 |