mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
CONFIG: adjust make scripts for darwin
- handling of dead links (find -L -delete unsupported) - remove ignore case flag on 's/../../i' used in have_scotch script. It is unneeded and not tolerated by Darwin's sed. - avoid embedded comments in EXE_INC (Make/options files), which do not work well with the OSX LLVM cpp. It strips out the comments but also removes the continuation char. STYLE: adjust notes about paraview library locations
This commit is contained in:
@ -28,18 +28,17 @@
|
||||
# For central installations not located under ThirdParty, the environment
|
||||
# values must be set manually. For example,
|
||||
#
|
||||
# setenv ParaView_DIR /opt/paraview/paraview-5.4.1
|
||||
# setenv ParaView_INCLUDE_DIR $ParaView_DIR/include/paraview-5.4
|
||||
# setenv PV_PLUGIN_PATH $FOAM_LIBBIN/paraview-5.4
|
||||
# setenv ParaView_DIR /opt/paraview/paraview-5.5.0
|
||||
# setenv ParaView_INCLUDE_DIR $ParaView_DIR/include/paraview-5.5
|
||||
# setenv PV_PLUGIN_PATH $FOAM_LIBBIN/paraview-5.5
|
||||
#
|
||||
# setenv PATH ${ParaView_DIR}/bin:${PATH}
|
||||
# setenv LD_LIBRARY_PATH ${ParaView_DIR}/lib/paraview-5.4:${LD_LIBRARY_PATH}
|
||||
# setenv PATH $ParaView_DIR/bin:${PATH}
|
||||
# setenv LD_LIBRARY_PATH $ParaView_DIR/lib:$LD_LIBRARY_PATH
|
||||
# unsetenv ParaView_VERSION # avoid using ThirdParty settings
|
||||
#
|
||||
# In newer versions (paraview 5.5), the contents of the lib/ changed
|
||||
# and now need to include that as well:
|
||||
# In paraview-5.4 and earlier, the libraries were in the sub-directory:
|
||||
#
|
||||
# setenv LD_LIBRARY_PATH ${ParaView_DIR}/lib:${ParaView_DIR}/lib/paraview-5.5:${LD_LIBRARY_PATH}
|
||||
# setenv LD_LIBRARY_PATH $ParaView_DIR/lib/paraview-5.4:$LD_LIBRARY_PATH
|
||||
#
|
||||
#------------------------------------------------------------------------------
|
||||
# USER EDITABLE PART: Changes made here may be lost with the next upgrade
|
||||
@ -50,7 +49,7 @@ set cmake_version=cmake-system
|
||||
|
||||
# END OF (NORMAL) USER EDITABLE PART
|
||||
#------------------------------------------------------------------------------
|
||||
set pv_api=auto # Either auto or pair of digits (eg, '5.4' etc)
|
||||
set pv_api=auto # Either auto or pair of (major.minor) digits
|
||||
|
||||
if (! $?ParaView_DIR ) setenv ParaView_DIR
|
||||
if (! $?WM_COMPILER_LIB_ARCH ) setenv WM_COMPILER_LIB_ARCH
|
||||
|
||||
Reference in New Issue
Block a user