diff options
author | Andrew Senkevich <andrew.senkevich@intel.com> | 2015-05-25 21:20:20 +0300 |
---|---|---|
committer | Andrew Senkevich <andrew.senkevich@intel.com> | 2015-05-25 21:20:20 +0300 |
commit | 829a679fac1fe173e81cb2c08204d2da86cf3f3a (patch) | |
tree | 66a26feb1b1a14f0f69f657285640910a4f16115 /elf | |
parent | 3e058c9d7eab6d6361e7cda5ba1394bc1757c9f6 (diff) | |
download | glibc-829a679fac1fe173e81cb2c08204d2da86cf3f3a.tar.gz glibc-829a679fac1fe173e81cb2c08204d2da86cf3f3a.tar.xz glibc-829a679fac1fe173e81cb2c08204d2da86cf3f3a.zip |
Localplt testing for vector math library and libmvec_hidden_* macro series.
* elf/Makefile (localplt-built-dso): libmvec added to localplt test. * include/libc-symbols.h: libmvec_hidden_* macro series added.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/elf/Makefile b/elf/Makefile index 34450eaa5b..b06e0a7ed2 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -990,6 +990,9 @@ localplt-built-dso := $(addprefix $(common-objpfx),\ resolv/libresolv.so \ crypt/libcrypt.so \ ) +ifeq ($(build-mathvec),yes) +localplt-built-dso += $(addprefix $(common-objpfx), mathvec/libmvec.so) +endif ifeq ($(have-thread-library),yes) localplt-built-dso += $(filter-out %_nonshared.a, $(shared-thread-library)) endif |