From: Sunil K Pandey Date: Wed, 23 Feb 2022 16:43:45 +0000 (-0800) Subject: x86_64: Disable libmvec tests if multiarch not enabled [BZ# 28869] X-Git-Tag: glibc-2.36~653 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=1153f7158608cfa3e7372e03bb82566a3dab1a19;p=glibc.git x86_64: Disable libmvec tests if multiarch not enabled [BZ# 28869] This patch disable libmvec math tests if multiarch not enabled. This fixes [BZ# 28869] Reviewed-by: H.J. Lu --- diff --git a/sysdeps/x86_64/fpu/Makefile b/sysdeps/x86_64/fpu/Makefile index 9fb587cf8f..8278ce104a 100644 --- a/sysdeps/x86_64/fpu/Makefile +++ b/sysdeps/x86_64/fpu/Makefile @@ -24,6 +24,8 @@ libmvec-support += \ $(addprefix svml_s_,$(addsuffix $(l),$(libmvec-funcs)))) endif +# Do not run libmvec tests if multiarch not enabled. +ifneq ($(multi-arch),no) # Variables for libmvec tests. ifeq ($(subdir)$(build-mathvec),mathyes) libmvec-tests += double-vlen2 double-vlen4 double-vlen4-avx2 \ @@ -112,3 +114,4 @@ $(objpfx)bench-double-%.c: $(bench-libmvec-deps) $(PYTHON) $(..)sysdeps/x86_64/fpu/scripts/bench_libmvec.py $(basename $(@F)); } > $@-tmp mv -f $@-tmp $@ endif +endif