BUG: foamPackRelease detects wrong build information

- was taking from the current head instead from specified commit-ish

ENH: add -debian=NUM convenience option to foamPackRelease

STYLE: relocate compile begin/end messages

COMP: suppress more clang warnings (needed for boost)
This commit is contained in:
Mark Olesen
2021-11-03 22:21:19 +01:00
parent 50995706a6
commit 742a2c8a49
5 changed files with 50 additions and 22 deletions

View File

@ -18,9 +18,15 @@ c++WARN = \
-Wno-unknown-warning-option \
$(FOAM_EXTRA_CXXFLAGS)
# Many extra warnings from boost
c++LESSWARN = \
-Wno-old-style-cast -Wno-unused-local-typedefs \
-Wno-tautological-undefined-compare -Wno-shift-negative-value \
-Wno-null-pointer-arithmetic
-Wno-null-pointer-arithmetic \
-Wno-null-pointer-subtraction \
-Wno-unknown-warning-option \
-Wno-deprecated-copy-with-user-provided-copy \
-Wno-tautological-overlap-compare \
-Wno-#pragma-messages
#------------------------------------------------------------------------------