From 0464f746e87fa29a1e3a88e9d3c1ff102b559528 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sun, 29 May 2011 21:25:58 -0400 Subject: [PATCH] Don't build AVX tests with old compilers --- ChangeLog | 3 +++ NEWS | 16 ++++++++-------- elf/Makefile | 5 ++++- 3 files changed, 15 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 796646e..33d0905 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2011-05-29 Ulrich Drepper + [BZ #11634] + * elf/Makefile (tests): Don't add tst-audit[67] without working -mavx. + * malloc/malloc.h: Mark malloc hook variables as deprecated. [BZ #11781] diff --git a/NEWS b/NEWS index a3e4464..d7a2d2a 100644 --- a/NEWS +++ b/NEWS @@ -10,14 +10,14 @@ Version 2.14 * The following bugs are resolved with this release: 386, 6420, 7101, 9730, 9732, 9809, 10138, 10149, 10157, 11257, 11258, - 11487, 11532, 11578, 11653, 11668, 11697, 11724, 11781, 11799, 11820, - 11837, 11857, 11869, 11892, 11895, 11901, 11945, 11947, 11952, 11987, - 12052, 12083, 12158, 12178, 12200, 12346, 12393, 12420, 12432, 12445, - 12449, 12453, 12454, 12460, 12469, 12489, 12509, 12510, 12511, 12518, - 12527, 12541, 12545, 12551, 12582, 12583, 12587, 12597, 12601, 12611, - 12625, 12626, 12631, 12650, 12653, 12655, 12660, 12671, 12681, 12685, - 12711, 12713, 12714, 12717, 12723, 12724, 12734, 12738, 12746, 12766, - 12775, 12777, 12782, 12788, 12792, 12795, 12811, 12813, 12814 + 11487, 11532, 11578, 11634, 11653, 11668, 11697, 11724, 11781, 11799, + 11820, 11837, 11857, 11869, 11892, 11895, 11901, 11945, 11947, 11952, + 11987, 12052, 12083, 12158, 12178, 12200, 12346, 12393, 12420, 12432, + 12445, 12449, 12453, 12454, 12460, 12469, 12489, 12509, 12510, 12511, + 12518, 12527, 12541, 12545, 12551, 12582, 12583, 12587, 12597, 12601, + 12611, 12625, 12626, 12631, 12650, 12653, 12655, 12660, 12671, 12681, + 12685, 12711, 12713, 12714, 12717, 12723, 12724, 12734, 12738, 12746, + 12766, 12775, 12777, 12782, 12788, 12792, 12795, 12811, 12813, 12814 * The RPC implementation in libc is obsoleted. Old programs keep working but new programs cannot be linked with the routines in libc anymore. diff --git a/elf/Makefile b/elf/Makefile index 7f03b5d..6d314a9 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -233,7 +233,10 @@ ifneq ($(selinux-enabled),1) tests-execstack-yes = tst-execstack tst-execstack-needed tst-execstack-prog endif ifeq (x86_64,$(config-machine)) -tests += tst-audit3 tst-audit4 tst-audit5 tst-audit6 tst-audit7 +tests += tst-audit3 tst-audit4 tst-audit5 +ifeq (yes,$(config-cflags-avx)) +tests += tst-audit6 tst-audit7 +endif endif endif tests: $(objpfx)tst-leaks1-mem $(objpfx)noload-mem -- 2.7.4