diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-03-24 01:10:38 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-03-24 01:52:46 +0100 |
commit | 16b597807d6c383c6a4730fe27e143271e952edb (patch) | |
tree | b87911cdcc17322f47e7ebcc1b63b512c3b2ccc1 /sysdeps/x86/Makefile | |
parent | 14beab53219bf0751f37805060d83860abe89bdc (diff) | |
download | glibc-16b597807d6c383c6a4730fe27e143271e952edb.zip glibc-16b597807d6c383c6a4730fe27e143271e952edb.tar.gz glibc-16b597807d6c383c6a4730fe27e143271e952edb.tar.bz2 |
elf: Fix not compiling ifunc tests that need gcc ifunc support
Diffstat (limited to 'sysdeps/x86/Makefile')
-rw-r--r-- | sysdeps/x86/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/x86/Makefile b/sysdeps/x86/Makefile index 3ca7bfe..8186e45 100644 --- a/sysdeps/x86/Makefile +++ b/sysdeps/x86/Makefile @@ -16,6 +16,7 @@ tests-static += tst-get-cpu-features-static \ tst-cpu-features-cpuinfo-static \ tst-cpu-features-supports-static ifeq (yes,$(have-ifunc)) +ifeq (yes,$(have-gcc-ifunc)) tests += \ tst-ifunc-isa-1 \ tst-ifunc-isa-1-static \ @@ -25,6 +26,7 @@ tests-static += \ tst-ifunc-isa-1-static \ tst-ifunc-isa-2-static endif +endif ifeq (yes,$(enable-x86-isa-level)) tests += tst-isa-level-1 modules-names += tst-isa-level-mod-1-baseline \ |