ThirdParty packages: changing metis-5.0pre2 download URL
[OpenFOAM-1.6-ext.git] / etc / cshrc
blob3259b7c0dcb8cd70640a09e8c6a06566b92ad57f
1 #----------------------------------*-sh-*--------------------------------------
2 # =========                 |
3 # \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4 #  \\    /   O peration     |
5 #   \\  /    A nd           | Copyright held by original author
6 #    \\/     M anipulation  |
7 #------------------------------------------------------------------------------
8 # License
9 #     This file is part of OpenFOAM.
11 #     OpenFOAM is free software; you can redistribute it and/or modify it
12 #     under the terms of the GNU General Public License as published by the
13 #     Free Software Foundation; either version 2 of the License, or (at your
14 #     option) any later version.
16 #     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17 #     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18 #     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19 #     for more details.
21 #     You should have received a copy of the GNU General Public License
22 #     along with OpenFOAM; if not, write to the Free Software Foundation,
23 #     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 # Script
26 #     etc/cshrc
28 # Description
29 #     Startup file for OpenFOAM
30 #     Sourced from ~/.login or ~/.cshrc
32 #------------------------------------------------------------------------------
34 setenv WM_PROJECT OpenFOAM
35 setenv WM_PROJECT_VERSION 1.6-ext
37 # helps to easily write #ifdefs to detect a dev-version
38 setenv FOAM_DEV 1
40 ###############################################################################
41 # USER EDITABLE PART
43 #    either setenv FOAM_INST_DIR before sourcing this file or set
44 #    foamInstall below to where OpenFOAM is installed
46 # Location of FOAM installation
47 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
48 set foamInstall = $HOME/$WM_PROJECT
49 # set foamInstall = ~$WM_PROJECT
50 # set foamInstall = /usr/local/$WM_PROJECT
51 # set foamInstall = /opt/$WM_PROJECT
53 # END OF (NORMAL) USER EDITABLE PART
54 ###############################################################################
56 # note the location for later use (eg, in job scripts)
57 if ( ! $?FOAM_INST_DIR ) setenv FOAM_INST_DIR $foamInstall
59 # The old dirs to be cleaned from the various environment variables
60 # - remove anything under top-level directory.
61 # NB: the WM_PROJECT_INST_DIR might not be identical between versions
62 set foamOldDirs="$FOAM_INST_DIR $HOME/$WM_PROJECT/$LOGNAME"
64 # Location of site/user files
65 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~
66 setenv WM_PROJECT_INST_DIR $FOAM_INST_DIR
67 setenv WM_PROJECT_DIR $WM_PROJECT_INST_DIR/$WM_PROJECT-$WM_PROJECT_VERSION
68 setenv WM_PROJECT_USER_DIR $HOME/$WM_PROJECT/$LOGNAME-$WM_PROJECT_VERSION
71 # Location of third-party software
72 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
73 #setenv WM_THIRD_PARTY_DIR $WM_PROJECT_INST_DIR/ThirdParty-$WM_PROJECT_VERSION
74 setenv WM_THIRD_PARTY_DIR $WM_PROJECT_DIR/ThirdParty
76 # Source files, possibly with some verbosity
77 alias _foamSource 'if ($?FOAM_VERBOSE && $?prompt) echo "Sourcing: \!*"; source \!*'
79 # Add in preset user or site preferences:
80 set foamPrefs=`$WM_PROJECT_DIR/bin/foamEtcFile prefs.csh`
81 if ( $status == 0 ) then
82     _foamSource $foamPrefs
83 endif
84 unset foamPrefs
86 # Evaluate command-line parameters
87 while ( $#argv > 0 )
88     switch ($argv[1])
89     case *=:
90         # name=       -> unsetenv name
91         eval "unsetenv $argv[1]:s/=//"
92         breaksw
93     case *=*:
94         # name=value  -> setenv name value
95         eval "setenv $argv[1]:s/=/ /"
96         breaksw
97     endsw
98     shift
99 end
102 # Operating System/Platform
103 # ~~~~~~~~~~~~~~~~~~~~~~~~~
104 # WM_OSTYPE = POSIX | ????
105 if ( ! $?WM_OSTYPE ) setenv WM_OSTYPE POSIX
108 # Compiler: set to Gcc, Gcc43 or Icc (for Intel's icc)
109 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
110 if ( ! $?WM_COMPILER ) setenv WM_COMPILER Gcc
111 #setenv WM_COMPILER Gcc
112 #setenv WM_COMPILER Icc
114 setenv WM_COMPILER_ARCH
115 setenv WM_COMPILER_LIB_ARCH
118 # Compilation options (architecture, precision, optimised, debug or profiling)
119 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
120 setenv WM_NCOMPPROCS 4
122 # WM_ARCH_OPTION = 32 | 64
123 if ( ! $?WM_ARCH_OPTION ) setenv WM_ARCH_OPTION 64
125 # WM_PRECISION_OPTION = DP | SP
126 if ( ! $?WM_PRECISION_OPTION ) setenv WM_PRECISION_OPTION DP
128 # WM_COMPILE_OPTION = Opt | Debug | Prof
129 #if ( ! $?WM_COMPILE_OPTION ) setenv WM_COMPILE_OPTION Opt
130 setenv WM_COMPILE_OPTION Opt
131 #setenv WM_COMPILE_OPTION Debug
133 # WM_MPLIB = | OPENMPI | MPICH | MPICH-GM | HPMPI | GAMMA | MPI | QSMPI
134 if ( ! $?WM_MPLIB ) setenv WM_MPLIB OPENMPI
137 # Run options (floating-point signal handling and memory initialisation)
138 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
139 setenv FOAM_SIGFPE
140 # setenv FOAM_SETNAN
143 # Detect system type and set environment variables
144 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
145 setenv WM_ARCH `uname -s`
147 switch ($WM_ARCH)
148 case Linux:
149     setenv WM_ARCH linux
151     switch (`uname -m`)
152     case i686:
153         breaksw
155     case x86_64:
156         switch ($WM_ARCH_OPTION)
157         case 32:
158             setenv WM_ARCH linux
159             setenv WM_COMPILER_ARCH '-64'
160             setenv WM_CFLAGS '-m32 -fPIC'
161             setenv WM_CXXFLAGS '-m32 -fPIC'
162             setenv WM_LDFLAGS '-m32'
163             breaksw
165         case 64:
166             setenv WM_ARCH linux64
167             setenv WM_COMPILER_LIB_ARCH 64
168             setenv WM_CFLAGS '-m64 -fPIC'
169             setenv WM_CXXFLAGS '-m64 -fPIC'
170             setenv WM_LDFLAGS '-m64'
171             breaksw
173         default:
174             echo Unknown WM_ARCH_OPTION $WM_ARCH_OPTION, should be 32 or 64
175             breaksw
177         endsw
178         breaksw
180     case ia64:
181         setenv WM_ARCH linuxIA64
182         setenv WM_COMPILER I64
183         breaksw
185     case mips64:
186         setenv WM_ARCH SiCortex64
187         setenv WM_COMPILER_LIB_ARCH 64
188         setenv WM_CFLAGS '-mabi=64 -fPIC'
189         setenv WM_CXXFLAGS '-mabi=64 -fPIC'
190         setenv WM_LDFLAGS '-mabi=64 -G0'
191         setenv WM_MPLIB MPI
192         ;;
194     case ppc64:
195         setenv WM_ARCH linuxPPC64
196         setenv WM_COMPILER_LIB_ARCH 64
197         setenv WM_CFLAGS '-m64 -fPIC'
198         setenv WM_CXXFLAGS '-m64 -fPIC'
199         setenv WM_LDFLAGS '-m64'
200         breaksw
202     default:
203         echo Unknown processor type `uname -m` for Linux
204         breaksw
206     endsw
207     breaksw
209 case Darwin:
210     # this makes certain things easier
211     setenv WM_ARCH_BASE darwin
213     switch (`uname -p`)
214     case powerpc:
215         setenv WM_ARCH darwinPpc
216         breaksw
217     case i386:
218         setenv WM_ARCH darwinIntel
219         breaksw
220     default:
221         echo "This seems to be an Intel-Mac please tell me the output of 'uname -p'. Bernhard."
222         setenv WM_ARCH darwinIntel
223         breaksw
224     endsw
225     switch ($WM_ARCH_OPTION)
226     case 32:
227         setenv WM_CFLAGS '-m32 -fPIC'
228         setenv WM_CXXFLAGS '-m32 -fPIC'
229         setenv WM_LDFLAGS '-m32'
230         breaksw;
231     case 64:
232         setenv WM_ARCH ${WM_ARCH}64
233         setenv WM_CFLAGS '-m64 -fPIC'
234         setenv WM_CXXFLAGS '-m64 -fPIC'
235         setenv WM_LDFLAGS '-m64'
236         breaksw;
237     default:
238         echo "Unknown WM_ARCH_OPTION $WM_ARCH_OPTION, should be 32 or 64"
239         breaksw
240     endsw
242     # Make sure that binaries use the best features of the used OS-Version
243     setenv MACOSX_DEPLOYMENT_TARGET `sw_vers -productVersion`
245     # Use Mac-Ports-Compiler instead of Apple-gcc-4.2
246     if ( ! $?compilerInstall ) setenv compilerInstall System
247     if ( $compilerInstall == "System" ) then 
248         switch ($WM_COMPILER)
249         case Gcc43:
250             setenv WM_CC 'gcc-mp-4.3'
251             setenv WM_CXX 'g++-mp-4.3'
252             breaksw;
253         case Gcc44:
254             setenv WM_CC 'gcc-mp-4.4'
255             setenv WM_CXX 'g++-mp-4.4'
256             breaksw;
257         case Gcc45:
258             setenv WM_CC 'gcc-mp-4.5'
259             setenv WM_CXX 'g++-mp-4.5'
260             breaksw;
261         endsw
262         #setenv WM_COMPILER ""
263     endif
265     breaksw
267 case SunOS:
268     setenv WM_ARCH SunOS64
269     setenv WM_COMPILER_LIB_ARCH 64
270     setenv WM_CFLAGS '-mabi=64 -fPIC'
271     setenv WM_CXXFLAGS '-mabi=64 -fPIC'
272     setenv WM_LDFLAGS '-mabi=64 -G0'
273     setenv WM_MPLIB FJMPI
274     breaksw
276 default:
277     echo
278     echo "Your '$WM_ARCH' operating system is not supported by this release"
279     echo "of OpenFOAM. For further assistance, please contact www.OpenFOAM.org"
280     echo
281     breaksw
283 endsw
286 # Clean standard environment variables (path/PATH, LD_LIBRARY_PATH, MANPATH)
287 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
288 set cleanProg=$WM_PROJECT_DIR/bin/foamCleanPath
290 if (! $?LD_LIBRARY_PATH ) then
291     setenv LD_LIBRARY_PATH ''
292 endif
293 if (! $?MANPATH) then
294     setenv MANPATH ''
295 endif
297 #- Clean path/PATH
298 set colonPath=`echo "$path" | sed -e 's/ /:/g'`
299 set cleanEnv=`$cleanProg "$colonPath" "$foamOldDirs"`
300 if ( $status == 0 ) then
301     set path=`echo "$cleanEnv" | sed -e 's/:/ /g'`
302 endif
304 #- Clean LD_LIBRARY_PATH
305 setenv LD_LIBRARY_PATH `$cleanProg "$LD_LIBRARY_PATH" "$foamOldDirs"`
307 #- Clean MANPATH
308 setenv MANPATH `$cleanProg "$MANPATH" "$foamOldDirs"`
311 # Source project setup files
312 # ~~~~~~~~~~~~~~~~~~~~~~~~~~
313 _foamSource $WM_PROJECT_DIR/etc/settings.csh
314 _foamSource $WM_PROJECT_DIR/etc/aliases.csh
316 # Source user setup files for optional packages
317 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
318 # _foamSource $WM_PROJECT_DIR/etc/apps/paraview/cshrc
319 #_foamSource $WM_PROJECT_DIR/etc/apps/paraview3/cshrc
320 # _foamSource $WM_PROJECT_DIR/etc/apps/ensight/cshrc
323 # Clean environment paths again. Only remove duplicates
324 # ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
325 #- Clean path/PATH
326 set colonPath=`echo "$path" | sed -e 's/ /:/g'`
327 set cleanEnv=`$cleanProg "$colonPath"`
328 if ( $status == 0 ) then
329     set path=`echo "$cleanEnv" | sed -e 's/:/ /g'`
330 endif
332 #- Clean LD_LIBRARY_PATH
333 setenv LD_LIBRARY_PATH `$cleanProg "$LD_LIBRARY_PATH"`
335 #- Clean MANPATH
336 setenv MANPATH `$cleanProg "$MANPATH"`:
338 #- Clean LD_PRELOAD
339 if ( $?LD_PRELOAD ) then
340     setenv LD_PRELOAD `$cleanProg "$LD_PRELOAD"`
341 endif
343 #- Clean DYLD_LIBRARY_PATH
344 if ( $?DYLD_LIBRARY_PATH ) then
345     setenv DYLD_LIBRARY_PATH `$cleanProg "$DYLD_LIBRARY_PATH"`
346 endif
348 # cleanup environment:
349 # ~~~~~~~~~~~~~~~~~~~~
350 unset cleanEnv cleanProg colonPath foamInstall foamOldDirs
351 unalias _foamSource
353 # -----------------------------------------------------------------------------