9 lines
253 B
Plaintext
9 lines
253 B
Plaintext
# Flags for compiling/linking openmp
|
|
# The USE_OMP is for OpenFOAM-specific use (general use is _OPENMP)
|
|
# -
|
|
# Clang provides 'omp' and a link for 'gomp'.
|
|
# With 'gomp' we can also use system libs.
|
|
|
|
COMP_OPENMP = -DUSE_OMP -fopenmp
|
|
LINK_OPENMP = -lgomp
|