Fix bugs and improve build system
Fix bug if ANIMATE define is set Move all defines to config.mk Add clangd generation in Makefile Move ICC to ICX config
This commit is contained in:
15
PoissonSolver/2D-seq/include_ICX.mk
Normal file
15
PoissonSolver/2D-seq/include_ICX.mk
Normal file
@@ -0,0 +1,15 @@
|
||||
CC = icx
|
||||
GCC = gcc
|
||||
LINKER = $(CC)
|
||||
|
||||
ifeq ($(ENABLE_OPENMP),true)
|
||||
OPENMP = -qopenmp
|
||||
endif
|
||||
|
||||
VERSION = --version
|
||||
CFLAGS = -O3 -xHost -std=c99 $(OPENMP)
|
||||
#CFLAGS += -qopt-zmm-usage=high #on CPUs with AVX512 support
|
||||
LFLAGS = $(OPENMP)
|
||||
DEFINES = -D_GNU_SOURCE
|
||||
INCLUDES =
|
||||
LIBS =
|
||||
Reference in New Issue
Block a user