mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- '-c' option (as per shell), '-Dkey[=value]' option to provide
preferences via the command-line. For example,
etc/openfoam -DWM_COMPILER=Clang -int64 ./Allwmake -j -s -l
These can also be combined with other options. Eg,
etc/openfoam -DWM_COMPILER=Clang \
-c 'wmake -show-path-cxx -show-cxxflags'
- relocated from bin/tools/ => etc/ for easier access
- bin/tools/openfoam.in : for autoconfig-style installation
- Auto-detect if the shell script was executed with openfoam and
interpret accordingly.
Simple example,
--------------
#!/usr/bin/openfoam
cd "${0%/*}" || exit # Run -*-sh-*- from this dir
blockMesh
simpleFoam
--------------
Note it is NOT currently possible to provide any other parameters
this way. Eg,
`#!/usr/bin/openfoam -sp` (NOT)
This will either fail to run, or result in infinite recursion.
98 lines
2.9 KiB
Bash
98 lines
2.9 KiB
Bash
#----------------------------------*-sh-*--------------------------------------
|
|
# ========= |
|
|
# \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
# \\ / O peration |
|
|
# \\ / A nd | www.openfoam.com
|
|
# \\/ M anipulation |
|
|
#------------------------------------------------------------------------------
|
|
# Copyright (C) 2019-2020 OpenCFD Ltd.
|
|
#------------------------------------------------------------------------------
|
|
# License
|
|
# This file is part of OpenFOAM, distributed under GPL-3.0-or-later.
|
|
#
|
|
# File
|
|
# bin/tools/source-bashrc
|
|
#
|
|
# Description
|
|
# Source user ~/.bashrc and OpenFOAM etc/bashrc.
|
|
# Not normally sourced manually, but from bash with the --rcfile option.
|
|
#
|
|
#------------------------------------------------------------------------------
|
|
# Hard-coded directory path (eg, autoconfig)
|
|
projectDir="@PROJECT_DIR@"
|
|
|
|
if [ -z "$projectDir" ] || [ "${projectDir#@}" != "$projectDir" ]
|
|
then
|
|
# Auto-detect location (as per OpenFOAM etc/bashrc)
|
|
# --
|
|
# Assuming this file is $WM_PROJECT_DIR/bin/tools/source-bashrc,
|
|
# the next lines should work when sourced by BASH or ZSH shells.
|
|
# --
|
|
|
|
projectDir="${BASH_SOURCE:-${ZSH_NAME:+$0}}"
|
|
if [ -n "$projectDir" ]
|
|
then
|
|
projectDir="$(\cd "$(dirname "$projectDir")"/../.. && \pwd -L)" || \
|
|
unset projectDir
|
|
fi
|
|
fi
|
|
|
|
#------------------------------------------------------------------------------
|
|
|
|
if [ -d "$projectDir" ]
|
|
then
|
|
_foamSourceBashEnv="$projectDir/etc/bashrc"
|
|
else
|
|
unset _foamSourceBashEnv
|
|
fi
|
|
|
|
|
|
# Source the user bashrc first.
|
|
# Simply hope that they don't unset/reset _foamSourceBashEnv !!
|
|
|
|
if [ -f "$HOME/.bashrc" ]
|
|
then
|
|
. "$HOME/.bashrc"
|
|
fi
|
|
|
|
|
|
# Source the OpenFOAM etc/bashrc
|
|
|
|
if [ -f "$_foamSourceBashEnv" ]
|
|
then
|
|
. "$_foamSourceBashEnv" $FOAM_SETTINGS
|
|
|
|
# Avoid further inheritance
|
|
unset FOAM_SETTINGS
|
|
|
|
# Some feedback
|
|
if [ -n "$PS1" ] && [ -d "$WM_PROJECT_DIR" ]
|
|
then
|
|
info="$("$WM_PROJECT_DIR"/bin/foamEtcFile -show-patch 2>/dev/null)"
|
|
|
|
# echo "Using: OpenFOAM-$WM_PROJECT_VERSION ($FOAM_API${info:+ patch=$info}) - visit www.openfoam.com" 1>&2
|
|
echo "Using: OpenFOAM-$WM_PROJECT_VERSION${info:+ (patch=$info)} - visit www.openfoam.com" 1>&2
|
|
echo "Arch: $WM_OPTIONS (mpi=$FOAM_MPI)" 1>&2
|
|
|
|
## echo "$WM_PROJECT_DIR" 1>&2
|
|
## echo 1>&2
|
|
|
|
# Set prompt as reminder that this is a shell session
|
|
|
|
# Chalmers likes this one:
|
|
# PS1="OpenFOAM${FOAM_API:+-$FOAM_API}:"'$(foamPwd)\n\u\$ '
|
|
|
|
PS1="OpenFOAM${FOAM_API:+-$FOAM_API}:"'\w/\n\u\$ '
|
|
fi
|
|
else
|
|
echo "Could not locate OpenFOAM etc/bashrc in '$projectDir'" 1>&2
|
|
fi
|
|
|
|
echo "OpenFOAM shell session - use exit to quit" 1>&2
|
|
echo 1>&2
|
|
|
|
# Cleanup variables (done as final statement for a clean exit code)
|
|
unset _foamSourceBashEnv projectDir
|
|
|
|
#------------------------------------------------------------------------------
|