Browse Source

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
tags/v0.3.0^2
Martin Kroeker GitHub 7 years ago
parent
commit
65b8a5c5d8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Makefile.system

+ 1
- 1
Makefile.system View File

@@ -433,7 +433,7 @@ CCOMMON_OPT += -fopenmp
endif

ifeq ($(C_COMPILER), INTEL)
CCOMMON_OPT += -openmp
CCOMMON_OPT += -fopenmp
endif

ifeq ($(C_COMPILER), PGI)


Loading…
Cancel
Save