mirror of
https://github.com/gcc-mirror/gcc.git
synced 2024-11-21 13:40:47 +00:00
3ded4832e0
gcc's build system has BOOT_CFLAGS and various STAGE<N>_C{,XX}FLAGS variables. BOOT_CXXFLAGS is not handled anywhere. config/ * mh-mingw: Drop assignment of unused BOOT_CXXFLAGS variable.
15 lines
616 B
Plaintext
15 lines
616 B
Plaintext
# 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 -Wno-pedantic-ms-format
|
|
CFLAGS += -D__USE_MINGW_ACCESS
|
|
CXXFLAGS += -D__USE_MINGW_ACCESS
|
|
STAGE1_CXXFLAGS += -D__USE_MINGW_ACCESS
|
|
STAGE2_CXXFLAGS += -D__USE_MINGW_ACCESS
|
|
STAGE3_CXXFLAGS += -D__USE_MINGW_ACCESS
|
|
STAGE4_CXXFLAGS += -D__USE_MINGW_ACCESS
|
|
|
|
# Increase stack limit to a figure based on the Linux default, with 4MB added
|
|
# as GCC turns out to need that much more to pass all the limits-* tests.
|
|
LDFLAGS += -Wl,--stack,12582912
|
|
BOOT_LDFLAGS += -Wl,--stack,12582912
|