Skip to content

Commit 6c77ace

Browse files
committed
modified: framework/configure.py
1 parent 54ebb94 commit 6c77ace

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

framework/configure.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1911,9 +1911,9 @@ def omp(context):
19111911
LINKFLAGS = lflags + ' -fopenmp'
19121912
elif clang:
19131913
LIBS.append('omp')
1914-
CFLAGS = flags + ' -fopenmp'
1915-
CXXFLAGS = ccflags + ' -fopenmp'
1916-
LINKFLAGS = lflags + ' -fopenmp'
1914+
CFLAGS = flags #+ ' -fopenmp'
1915+
CXXFLAGS = ccflags#+ ' -fopenmp'
1916+
LINKFLAGS = lflags #+ ' -fopenmp'
19171917
elif icc:
19181918
CFLAGS = flags + ' -qopenmp -D_OPENMP'
19191919
CXXFLAGS = ccflags + ' -qopenmp -D_OPENMP'

0 commit comments

Comments
 (0)