COMP: simplify openmp handling (#2617)

- remove old, unneeded -DUSE_OMP define.
- wmake -no-openmp option to add '~openmp' to WM_COMPILE_CONTROL

ENH: add bash completion handling for wmake
This commit is contained in:
Mark Olesen
2022-10-26 10:34:25 +02:00
parent fd55151a12
commit 24ffc5236d
13 changed files with 54 additions and 32 deletions

View File

@ -1,5 +1,6 @@
# Flags for compiling/linking openmp
# The USE_OMP is for OpenFOAM-specific use (general use is _OPENMP)
COMP_OPENMP = -DUSE_OMP -fopenmp
COMP_OPENMP = -fopenmp
LINK_OPENMP = -lgomp
# -----------------------------------------------------------------------------