Merge pull request #2882 from martin-frbg/issue2709

Use generic C for (D/Z)NRM2 on Windows x86_64
This commit is contained in:
Martin Kroeker
2020-10-11 22:22:30 +02:00
committed by GitHub

View File

@@ -259,8 +259,12 @@ SNRM2KERNEL = nrm2_sse.S
endif
ifndef DNRM2KERNEL
ifeq ($(OSNAME),WINNT)
DNRM2KERNEL = ../arm/nrm2.c
else
DNRM2KERNEL = nrm2.S
endif
endif
ifndef QNRM2KERNEL
QNRM2KERNEL = nrm2.S
@@ -271,8 +275,12 @@ CNRM2KERNEL = znrm2_sse.S
endif
ifndef ZNRM2KERNEL
ifeq ($(OSNAME),WINNT)
ZNRM2KERNEL = ../arm/znrm2.c
else
ZNRM2KERNEL = znrm2.S
endif
endif
ifndef XNRM2KERNEL
XNRM2KERNEL = znrm2.S