fixed writing out entries in advective bc
[openfoam-extend-OpenFOAM-1.6-ext.git] / ThirdParty / AllMake.stage1
blob926f028633973f1872d52f579549db5f0947fdb7
1 #!/bin/bash
2 #------------------------------------------------------------------------------
3 # ========= |
4 # \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
5 # \\ / O peration |
6 # \\ / A nd | Copyright held by original author
7 # \\/ M anipulation |
8 #------------------------------------------------------------------------------
9 # License
10 # This file is part of OpenFOAM.
12 # OpenFOAM is free software: you can redistribute it and/or modify it
13 # under the terms of the GNU General Public License as published by
14 # the Free Software Foundation, either version 3 of the License, or
15 # (at your option) any later version.
17 # OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
18 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
20 # for more details.
22 # You should have received a copy of the GNU General Public License
23 # along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 # Script
26 # AllMake.stage1
28 # Description
29 # Build script for ThirdParty packages: Stage1
31 # Compilers and basic tools.
33 # Once this stage is built, you would normally re-initialize your
34 # OpenFOAM environment in order to use the new compilers and tools
36 # NOTE: This stage is optional. Use it only if you want to override
37 # your system pre-installed compilers and tools
39 # Requirements:
40 # 1: Your OpenFOAM environment must be properly initialized
42 # Author:
43 # Martin Beaudoin, Hydro-Quebec, (2010)
45 #------------------------------------------------------------------------------
46 # run from third-party directory only
47 cd ${0%/*} || exit 1
49 wmakeCheckPwd "$WM_THIRD_PARTY_DIR" || {
50 echo "Error: Current directory is not \$WM_THIRD_PARTY_DIR"
51 echo " The environment variables are inconsistent with the installation."
52 echo " Check the OpenFOAM entries in your dot-files and source them."
53 exit 1
55 . tools/makeThirdPartyFunctionsForRPM
56 #------------------------------------------------------------------------------
58 echo ========================================
59 echo Starting ThirdParty AllMake: Stage1
60 echo ========================================
61 echo
63 # Gcc and companion libraries
65 # You need gmp and mpfr for gcc-4.4.5
66 # Uncomment the following 3 lines for gcc-4.4.5
67 #( rpm_make -p gmp-5.0.1 -s gmp-5.0.1.spec -u ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.1.tar.gz )
68 #( rpm_make -p mpfr-3.0.1 -s mpfr-3.0.1.spec -u ftp://ftp.gnu.org/gnu/mpfr/mpfr-3.0.1.tar.gz )
69 #( rpm_make -p gcc-4.4.5 -s gcc-4.4.5.spec -u ftp://ftp.gnu.org/gnu/gcc/gcc-4.4.5/gcc-4.4.5.tar.gz )
71 # You need gmp, mpfr and mpc for gcc-4.5.1
72 # Uncomment the following 4 lines for gcc-4.5.1
73 #( rpm_make -p gmp-5.0.1 -s gmp-5.0.1.spec -u ftp://ftp.gnu.org/gnu/gmp/gmp-5.0.1.tar.gz )
74 #( rpm_make -p mpfr-3.0.1 -s mpfr-3.0.1.spec -u ftp://ftp.gnu.org/gnu/mpfr/mpfr-3.0.1.tar.gz )
75 #( rpm_make -p mpc-0.8.2 -s mpc-0.8.2.spec -u http://www.multiprecision.org/mpc/download/mpc-0.8.2.tar.gz )
76 #( rpm_make -p gcc-4.5.1 -s gcc-4.5.1.spec -u ftp://ftp.gnu.org/gnu/gcc/gcc-4.5.1/gcc-4.5.1.tar.gz )
78 # Python
79 #( rpm_make -p Python-2.7 -s Python-2.7.spec -u http://www.python.org/ftp/python/2.7/Python-2.7.tgz )
81 # m4
82 # You need a recent version of m4 in order to compile a recent version of bison
83 #( rpm_make -p m4-1.4.16 -s m4-1.4.16.spec -u http://ftp.gnu.org/gnu/m4/m4-1.4.16.tar.gz )
85 # bison
86 #( rpm_make -p bison-2.4.3 -s bison-2.4.3.spec -u http://ftp.gnu.org/gnu/bison/bison-2.4.3.tar.gz )
88 # flex
89 #( rpm_make -p flex-2.5.35 -s flex-2.5.35.spec -u http://downloads.sourceforge.net/project/flex/flex/flex-2.5.35/flex-2.5.35.tar.gz )
91 # cmake
92 ( rpm_make -p cmake-2.8.8 -s cmake-2.8.8.spec -u http://www.cmake.org/files/v2.8/cmake-2.8.8.tar.gz )
94 echo ========================================
95 echo Done ThirdParty AllMake: Stage1
96 echo ========================================
97 echo
99 # ----------------------------------------------------------------- end-of-file