mirror of
https://develop.openfoam.com/Development/ThirdParty-common.git
synced 2025-12-08 06:57:50 +00:00
CONFIG: skip compilation of ADIOS2, METIS with mingw (#57)
- adios is out of scope for cross-compilation - metis does not seem to support cross-compilation. Use scotch instead.
This commit is contained in:
13
makeAdios2
13
makeAdios2
@ -123,6 +123,19 @@ then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Known build issues for mingw (various things)
|
||||||
|
case "$WM_COMPILER" in
|
||||||
|
(Mingw*)
|
||||||
|
if [ "$optForce" = true ]
|
||||||
|
then
|
||||||
|
echo "Warning: adios2 - known compilation issues with $WM_COMPILER"
|
||||||
|
else
|
||||||
|
echo "Skipping adios2 - known compilation issues with $WM_COMPILER"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
# Build ADIOS
|
# Build ADIOS
|
||||||
|
|||||||
11
makeMETIS
11
makeMETIS
@ -121,6 +121,17 @@ then
|
|||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
# Known build issues for mingw (various things)
|
||||||
|
case "$WM_COMPILER" in
|
||||||
|
(Mingw*)
|
||||||
|
if :
|
||||||
|
then
|
||||||
|
echo "Skipping metis - known compilation issues with $WM_COMPILER"
|
||||||
|
exit 0
|
||||||
|
fi
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
|
||||||
requireExtLibBin
|
requireExtLibBin
|
||||||
|
|
||||||
#------------------------------------------------------------------------------
|
#------------------------------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user