diff options
author | Andreas Schwab <schwab@suse.de> | 2015-01-22 17:54:21 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2015-02-23 12:35:54 +0100 |
commit | 51225803259c69a792a272d067443f3fbc9b79d7 (patch) | |
tree | ae3c59d3822aae89ba478dcd7a95846c90bf8b0f /elf | |
parent | bdf1ff052a8e23d637f2c838fa5642d78fcedc33 (diff) | |
download | glibc-51225803259c69a792a272d067443f3fbc9b79d7.zip glibc-51225803259c69a792a272d067443f3fbc9b79d7.tar.gz glibc-51225803259c69a792a272d067443f3fbc9b79d7.tar.bz2 |
Fix failure of elf/tst-audit2 when compiled with GCC-5
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/elf/Makefile b/elf/Makefile index b43b48e..f78642e 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -1017,6 +1017,8 @@ $(objpfx)tst-audit1.out: $(objpfx)tst-auditmod1.so tst-audit1-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so $(objpfx)tst-audit2.out: $(objpfx)tst-auditmod1.so +# Prevent GCC-5 from translating a malloc/memset pair into calloc +CFLAGS-tst-audit2.c += -fno-builtin tst-audit2-ENV = LD_AUDIT=$(objpfx)tst-auditmod1.so $(objpfx)tst-audit9: $(libdl) |