Use generic C for D/Z nrm2 kernels on Windows to work around fpu exception bug

This commit is contained in:
Martin Kroeker 2020-10-06 21:33:16 +02:00 committed by GitHub
parent cccd1438da
commit 7812486091
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

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