Skip to content

Commit

Permalink
modified: framework/configure.py
Browse files Browse the repository at this point in the history
  • Loading branch information
psava committed Oct 7, 2024
1 parent 54ebb94 commit 6c77ace
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -1911,9 +1911,9 @@ def omp(context):
LINKFLAGS = lflags + ' -fopenmp'
elif clang:
LIBS.append('omp')
CFLAGS = flags + ' -fopenmp'
CXXFLAGS = ccflags + ' -fopenmp'
LINKFLAGS = lflags + ' -fopenmp'
CFLAGS = flags #+ ' -fopenmp'
CXXFLAGS = ccflags#+ ' -fopenmp'
LINKFLAGS = lflags #+ ' -fopenmp'
elif icc:
CFLAGS = flags + ' -qopenmp -D_OPENMP'
CXXFLAGS = ccflags + ' -qopenmp -D_OPENMP'
Expand Down

0 comments on commit 6c77ace

Please sign in to comment.