File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 9
9
endif
10
10
11
11
ifeq ($(CORE), SKYLAKEX)
12
+ ifndef DYNAMIC_ARCH
12
13
ifndef NO_AVX512
13
14
CCOMMON_OPT += -march=skylake-avx512
14
15
FCOMMON_OPT += -march=skylake-avx512
22
23
endif
23
24
endif
24
25
endif
26
+ endif
25
27
26
28
ifeq ($(OSNAME), Interix)
27
29
ARFLAGS = -m x64
Original file line number Diff line number Diff line change @@ -6,7 +6,19 @@ TOPDIR = ..
6
6
include $(TOPDIR ) /Makefile.system
7
7
8
8
ifdef TARGET_CORE
9
+ ifeq ($(TARGET_CORE ) , SKYLAKEX)
10
+ override CFLAGS += -DBUILD_KERNEL -DTABLE_NAME=gotoblas_$(TARGET_CORE ) -march=skylake-avx512
11
+ ifeq ($(OSNAME), CYGWIN_NT)
12
+ override CFLAGS += -fno-asynchronous-unwind-tables
13
+ endif
14
+ ifeq ($(OSNAME), WINNT)
15
+ ifeq ($(C_COMPILER), GCC)
16
+ override CFLAGS += -fno-asynchronous-unwind-tables
17
+ endif
18
+ endif
19
+ else
9
20
override CFLAGS += -DBUILD_KERNEL -DTABLE_NAME=gotoblas_$(TARGET_CORE )
21
+ endif
10
22
BUILD_KERNEL = 1
11
23
KDIR =
12
24
TSUFFIX = _$(TARGET_CORE )
You can’t perform that action at this time.
0 commit comments