Skip to content

Commit 5004951

Browse files
committed
remove HAVE_C23 config.mk option
1 parent bbfb40f commit 5004951

4 files changed

Lines changed: 0 additions & 10 deletions

File tree

config.mk

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ TOOLCHAIN ?= ICC
44
MTX_FMT ?= CRS
55
ENABLE_MPI ?= true
66
ENABLE_OPENMP ?= false
7-
HAVE_C23 ?= false
87
FLOAT_TYPE ?= DP # SP for float, DP for double
98
UINT_TYPE ?= U # U for unsigned int, ULL for unsigned long long int
109

mk/include_CLANG.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ endif
1414

1515
# Set default
1616
C_VERSION = c17
17-
ifeq ($(strip $(HAVE_C23)),true)
18-
C_VERSION = c23
19-
endif
2017

2118
VERSION = --version
2219
CFLAGS = -O3 -ffast-math -std=$(C_VERSION) $(OPENMP)

mk/include_GCC.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ endif
1313

1414
# Set default
1515
C_VERSION = c17
16-
ifeq ($(strip $(HAVE_C23)),true)
17-
C_VERSION = c23
18-
endif
1916

2017
VERSION = --version
2118
CFLAGS = -O3 -ffast-math -std=$(C_VERSION) $(OPENMP)

mk/include_ICC.mk

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ endif
1313

1414
# Set default
1515
C_VERSION = c17
16-
ifeq ($(strip $(HAVE_C23)),true)
17-
C_VERSION = c23
18-
endif
1916

2017
VERSION = --version
2118
CFLAGS = -O3 -ffast-math -xHost -std=$(C_VERSION) $(OPENMP)

0 commit comments

Comments
 (0)