We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06f7d78 commit 51aec8eCopy full SHA for 51aec8e
kernel/Makefile
@@ -7,7 +7,15 @@ include $(TOPDIR)/Makefile.system
7
8
ifdef TARGET_CORE
9
ifeq ($(TARGET_CORE), SKYLAKEX)
10
-override CFLAGS += -DBUILD_KERNEL -DTABLE_NAME=gotoblas_$(TARGET_CORE) -march=skylake-avx512
+ 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
17
18
19
else
20
override CFLAGS += -DBUILD_KERNEL -DTABLE_NAME=gotoblas_$(TARGET_CORE)
21
endif
0 commit comments