Browse Source

Use proper Makefile syntax

pull/5076/head
Martin Kroeker GitHub 1 year ago
parent
commit
199e787fc9
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      kernel/arm64/KERNEL.NEOVERSEN1

+ 6
- 1
kernel/arm64/KERNEL.NEOVERSEN1 View File

@@ -98,13 +98,18 @@ ZNRM2KERNEL = znrm2.S

DDOTKERNEL = dot.c
SDOTKERNEL = dot.c
if defined(__clang__) && defined(OS_WINDOWS)
ifeq ($(OSNAME), WINNT)
ifeq ($(C_COMPILER), CLANG)
CDOTKERNEL = zdot.S
ZDOTKERNEL = zdot.S
else
CDOTKERNEL = zdot_thunderx2t99.c
ZDOTKERNEL = zdot_thunderx2t99.c
endif
else
CDOTKERNEL = zdot_thunderx2t99.c
ZDOTKERNEL = zdot_thunderx2t99.c
endif
DSDOTKERNEL = dot.S

DGEMM_BETA = dgemm_beta.S


Loading…
Cancel
Save