Skip to content

Commit

Permalink
Merge pull request #2882 from martin-frbg/issue2709
Browse files Browse the repository at this point in the history
Use generic C for (D/Z)NRM2 on Windows x86_64
  • Loading branch information
martin-frbg authored Oct 11, 2020
2 parents ec638a8 + 7812486 commit c589c3e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions kernel/x86_64/KERNEL
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit c589c3e

Please sign in to comment.