diff options
author | Andreas Schwab <schwab@linux-m68k.org> | 2016-07-04 23:11:49 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@linux-m68k.org> | 2016-07-04 23:15:29 +0200 |
commit | 87523e9c3605037cee54bbc6bd7a040a15979cc1 (patch) | |
tree | ef64a0671ad1d0b743012b3176260b7203a784ab | |
parent | f175e375136e38737753a68b4ae026f768ee9466 (diff) | |
download | glibc-87523e9c3605037cee54bbc6bd7a040a15979cc1.zip glibc-87523e9c3605037cee54bbc6bd7a040a15979cc1.tar.gz glibc-87523e9c3605037cee54bbc6bd7a040a15979cc1.tar.bz2 |
m68k: suppress -Wframe-address warning
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | sysdeps/m68k/Makefile | 4 |
2 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,7 @@ +2016-07-04 Andreas Schwab <schwab@linux-m68k.org> + + * sysdeps/m68k/Makefile (CFLAGS-mcount.c): Define. + 2016-07-01 Maciej W. Rozycki <macro@imgtec.com> * sysdeps/generic/ldsodefs.h diff --git a/sysdeps/m68k/Makefile b/sysdeps/m68k/Makefile index 22a961c..4d5515d 100644 --- a/sysdeps/m68k/Makefile +++ b/sysdeps/m68k/Makefile @@ -43,3 +43,7 @@ endif ifeq ($(subdir),elf) CFLAGS-rtld.c += -Wno-uninitialized -Wno-unused endif + +ifeq ($(subdir),gmon) +CFLAGS-mcount.c += -Wno-frame-address +endif |