COMP: add wmake rules for Pgi compiler (#1234)

This commit is contained in:
Mark Olesen
2019-03-11 15:56:40 +01:00
parent 06ab522d77
commit 54989c4a18
18 changed files with 96 additions and 2 deletions

View File

@ -0,0 +1,7 @@
SUFFIXES += .c
cc = pgcc
cDBUG =
cOPT = -O2
cWARN =

View File

@ -0,0 +1,13 @@
SUFFIXES += .C .cc .cpp .cxx
CC = pgc++ -std=c++11
c++DBUG =
c++OPT = -O2
ptFLAGS = -DNoRepository
# - Standard warnings
# - Less restrictive warnings (may be needed for flex++, CGAL, etc.)
c++WARN =
c++LESSWARN =

View File

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