mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- for compilers such as gcc and clang, may have several different
variants installed on the computer. Use WM_COMPILER_CONTROL to
specify the preferred variant.
Eg,
WM_COMPILER=Gcc
WM_COMPILER_CONTROL="version=8"
will compile with "gcc-8" and "g++-8"
Good practice would be to tag output directory names with the
version too. Eg
WM_COMPILER=Clang110
WM_COMPILER_CONTROL="version=11.0"
STYLE: modify message for change of gcc -> clang (darwin)
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
#------------------------------------------------------------------------------
|
|
# Nvidia compilers
|
|
#------------------------------------------------------------------------------
|
|
SUFFIXES += .C .cc .cpp .cxx
|
|
|
|
CC = nvc++$(COMPILER_VERSION) -std=c++14
|
|
|
|
c++ARCH =
|
|
c++DBUG =
|
|
c++OPT = -O2
|
|
ptFLAGS = -DNoRepository
|
|
|
|
# - Standard warnings
|
|
# - Less restrictive warnings (may be needed for flex++, CGAL, etc.)
|
|
|
|
c++WARN = \
|
|
-Wall -Wextra \
|
|
--diag_suppress=111,128,177,185,612,998,1098 \
|
|
--display_error_number \
|
|
$(FOAM_EXTRA_CXXFLAGS)
|
|
|
|
c++LESSWARN =
|
|
|
|
# Warnings
|
|
# --------
|
|
# Run with --display_error_number to get numbers
|
|
# and --diag_suppress=XXX to suppress
|
|
#
|
|
#111-D: statement is unreachable
|
|
#128-D: loop is not reachable
|
|
#177-D: function was declared but never referenced
|
|
#185-D: dynamic initialization in unreachable code
|
|
#612-D: overloaded virtual function ... is only partially overridden
|
|
#998-D: function XX is hidden by YY -- virtual function override intended?
|
|
#1098-D: unknown attribute "fallthrough"
|
|
#
|
|
#------------------------------------------------------------------------------
|