diff options
author | Steve Ellcey <sellcey@caviumnetworks.com> | 2017-07-21 10:33:30 -0700 |
---|---|---|
committer | Steve Ellcey <sellcey@caviumnetworks.com> | 2017-07-21 10:33:30 -0700 |
commit | 6259e62c027d38f5061e723f80488c36e5e28cad (patch) | |
tree | f16de409286102ae5e05c2e4a8b6db8f843192af /localedata/Makefile | |
parent | cb62108e740924551fd45f89815d6fba8139890b (diff) | |
download | glibc-6259e62c027d38f5061e723f80488c36e5e28cad.tar glibc-6259e62c027d38f5061e723f80488c36e5e28cad.tar.gz glibc-6259e62c027d38f5061e723f80488c36e5e28cad.tar.bz2 glibc-6259e62c027d38f5061e723f80488c36e5e28cad.zip |
Fix localedata test builds with latest GCC
* localedata/Makefile (CFLAGS-tst_iswalnum.c, CFLAGS-tst_iswalpha.c
CFLAGS-tst_iswcntrl.c, CFLAGS-tst_iswdigit.c, CFLAGS-tst_iswgraph.c,
CFLAGS-tst_iswlower.c, CFLAGS-tst_iswprint.c, CFLAGS-tst_iswpunct.c,
CFLAGS-tst_iswspace.c, CFLAGS-tst_iswupper.c, CFLAGS-tst_iswxdigit.c,
CFLAGS-tst_towlower.c, CFLAGS-tst_towupper.c): New macros.
Diffstat (limited to 'localedata/Makefile')
-rw-r--r-- | localedata/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/localedata/Makefile b/localedata/Makefile index 47ca39d76a..20c5921aea 100644 --- a/localedata/Makefile +++ b/localedata/Makefile @@ -122,6 +122,21 @@ $(inst_i18ndir)/charmaps/%.gz: charmaps/% $(+force) # Install the locale source files in the appropriate directory. $(inst_i18ndir)/locales/%: locales/% $(+force); $(do-install) +# These tests use multistatement macros from tests-mbwc/tst_funcs.h +# and will not compile with GCC 8.1 without the warning turned off. +CFLAGS-tst_iswalnum.c = -Wno-multistatement-macros +CFLAGS-tst_iswalpha.c = -Wno-multistatement-macros +CFLAGS-tst_iswcntrl.c = -Wno-multistatement-macros +CFLAGS-tst_iswdigit.c = -Wno-multistatement-macros +CFLAGS-tst_iswgraph.c = -Wno-multistatement-macros +CFLAGS-tst_iswlower.c = -Wno-multistatement-macros +CFLAGS-tst_iswprint.c = -Wno-multistatement-macros +CFLAGS-tst_iswpunct.c = -Wno-multistatement-macros +CFLAGS-tst_iswspace.c = -Wno-multistatement-macros +CFLAGS-tst_iswupper.c = -Wno-multistatement-macros +CFLAGS-tst_iswxdigit.c = -Wno-multistatement-macros +CFLAGS-tst_towlower.c = -Wno-multistatement-macros +CFLAGS-tst_towupper.c = -Wno-multistatement-macros ifeq ($(run-built-tests),yes) generated-dirs += $(LOCALES) |