Skip to content

Commit 65b8a5c

Browse files
authored
Update compiler flag for openmp use with ICC
The deprecated -openmp option was finally removed in favor of -qopenmp or -fopenmp, picking the latter to stay compatible with Intel compiler versions before 2015 (when -q options were introduced). Fixes #1546
1 parent 88e224f commit 65b8a5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile.system

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ CCOMMON_OPT += -fopenmp
433433
endif
434434

435435
ifeq ($(C_COMPILER), INTEL)
436-
CCOMMON_OPT += -openmp
436+
CCOMMON_OPT += -fopenmp
437437
endif
438438

439439
ifeq ($(C_COMPILER), PGI)

0 commit comments

Comments
 (0)