mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- Could be related to interrupted builds.
So if there are any parts of the build that rely on an explicit
'wmakeLnInclude', make sure that the contents are properly updated.
--
ENH: improved feedback from top-level Allwmake
- Report which section (libraries, applications) is being built.
- Provide final summary of date, version, etc, which can be helpful
for later diagnosis or record keeping.
- The -log=XXX option for Allwmake now accepts a directory name
and automatically appends an appropriate log name.
Eg,
./Allwmake -log=logs/ ->> logs/log.linux64GccDPInt32Opt
The default name is built from the value of WM_OPTIONS.
--
BUG: shell not exiting properly in combination with -log option
- the use of 'tee' causes the shell to hang around.
Added an explicit exit to catch this.
--
- Detecting the '-k' (-non-stop) option at the top-level Allwmake, which
may improve robustness.
- Explicit continue-on-error for foamyMesh (as optional component)
- unify format of script messages for better readability
COMP: reduce warnings when building Pstream (old-style casts in openmpi)
28 lines
927 B
Bash
Executable File
28 lines
927 B
Bash
Executable File
#!/bin/sh
|
|
cd ${0%/*} || exit 1 # Run from this directory
|
|
|
|
# Optional unit: continue-on-error
|
|
# - may not have CGAL installed,
|
|
# - or the CGAL installation moved and gives CMake problems
|
|
export WM_CONTINUE_ON_ERROR=true
|
|
|
|
# Parse arguments for library compilation
|
|
. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments
|
|
|
|
if [ -f "$CGAL_ARCH_PATH/include/CGAL/version.h" ] || \
|
|
[ "${CGAL_ARCH_PATH##*-}" = system -a -f /usr/include/CGAL/version.h ]
|
|
then
|
|
wmake $targetType conformalVoronoiMesh
|
|
wmake $targetType conformalVoronoi2DMesh
|
|
wmake foamyQuadMesh
|
|
wmake foamyHexMesh
|
|
# wmake foamyHexMeshBackgroundMesh
|
|
# (cd foamyHexMeshSurfaceSimplify && ./Allwmake)
|
|
# wmake cellSizeAndAlignmentGrid
|
|
echo "Finish ${PWD##*/}" # Also for a clean exit code
|
|
else
|
|
echo "WARNING: cannot build ${PWD##*/} without CGAL"
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|