[cantera+autotools]: removing preconfigure scripts from documentation directory

This commit is contained in:
Nicholas Malaya 2011-12-20 06:45:06 +00:00
parent 19b4ae4ecd
commit 374d43d697
13 changed files with 0 additions and 1649 deletions

View file

@ -1,38 +0,0 @@
README.txt (docs directory)
Contents of the Directory
-------------------------------
1 install_examples directory
--------------------------------
The install_examples directory contains various successful compilation environments that
Cantera has been tested out on. These files are "pre-preconfig files". In other words
these are shell scripts that are executed before Cantera's main preconfig script is run.
In order to use these scripts, you should copy them to the top directory of the Cantera
distribution. Then, most of the scripts will still need some editing to specify path
information and locations of the installation directory.
Then, you can then execute the scripts to create the Makefiles in the distribution.
A typical successful session of making the distribution, testing it, and then running
the small test problem section would consist of the following commands:
- Install a python math package (either numeric, numarray, or numpy)
- Install sundials or choose vode within Cantera
autoconf
script_prepreconfig.sh
make
make install
cd test_problems
make
make test
You can then go to the installation directories and test your Cantera installations
further.

View file

@ -1,164 +0,0 @@
#!/bin/sh
# ------------------------------------------------------------------------------
#
# Example Cantera pre-preconfig configuration script
# 10/20/09
#
# Platform: cygwin
# Compiler: gcc v. 3.4.4
# Optimization: Debug version
# python: v. 2.5.2 (full installation)
# matlab: no
# f2c: yes
# num python numeric
#
#
# ---------------------------------------------------------------------------
# The only place where the User must custimize this installation
# is located at the top here:
#
# Specify the installation directory here:
#
Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8_develop'
#
# Specify the Sundials installation directory here (leave it as a null script
# if you don't want to link sundials in
#
# Sundials_Home=''
Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg'
#
# Specify the Sundials version number (either 2.2, 2.3, or 2.4)
Sundials_Version='2.3'
# Sundials_Version=2.4'
# -----------------------------------------------------------------------------
#
# User may optionally customize below this line (but doesn't have to) --
#
CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/bin/python
export PYTHON_CMD
#
# The full python package works within cygwin. Minimal is needed at the least
#
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
#
# Matlab on the pc is supported through the windows vc++ 8.0 compilation
# environment
#
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
NUMARRAY_HOME=''
export NUMARRAY_HOME
#
# Turns on extra debugging
#
DEBUG_MODE='y'
export DEBUG_MODE
#
# Numeric must have already been installed in the
# /usr/lib/python2.5/site-packages
# directory before the Cantera installation. If not, you can always
# do a minimal python installation and forego forming Cantera's python interface.
#
USE_NUMERIC="y"
export USE_NUMERIC
#
# We use F2C with the cygwin installation. However, the g77 interface should
# work too.
#
BUILD_WITH_F2C="y"
export BUILD_WITH_F2C
BITCOMPILE="32"
export BITCOMPILE
#
# We use the default gcc compilers that come with cygwin. Currently, this
# is gcc v. 3.4.4.
#
CXX='g++'
export CXX
#
CC='gcc'
export CC
#
F77='g77'
export F77
#
# Debug options
#
# -DDEBUG_HKM
# -DDEBUG_BASISOPTIMIZE
# -DDEBUG_CHEMEQUIL
#
CXXFLAGS="-g -Wall "
export CXXFLAGS
CFLAGS=$CXXFLAGS
export CFLAGS
FFLAGS="-g "
export FFLAGS
LDFLAGS='-g'
export LDFLAGS
LCXX_END_LIBS="-lm -lstdc++"
export LCXX_END_LIBS
# The gcc compiler in cygwin will put a .exe extension on anyway. So,
# we might as well define this field as .exe. cygwin will automagically
# equate executable files with no extension as having an .exe extension.
# This is very mysterious. However, the mystery goes away if you define
# these files to have a .exe suffix from the getgo.
EXE_EXT=".exe"
export EXE_EXT
EXTRA_LINK=""
export EXTRA_LINK
MAKE=make
export MAKE
#
# Specify the SUNDIALS option
#
if test -n "$Sundials_Home"
then
USE_SUNDIALS='y'
SUNDIALS_VERSION=$Sundials_Version
else
USE_SUNDIALS='n'
fi
export USE_SUNDIALS
export SUNDIALS_VERSION
#
# Specify where to find the sundials installation directories
#
SUNDIALS_HOME=$Sundials_Home
export SUNDIALS_HOME
#
# Ok, fire off the main preconfig script
#
./preconfig

View file

@ -1,167 +0,0 @@
#!/bin/sh
# ------------------------------------------------------------------------------
#
# Example Cantera pre-preconfig configuration script
# 10/20/09
#
# Platform: cygwin
# Compiler: gcc v. 3.4.4
# Optimization: Debug version
# python: v. 2.5.2 (full installation)
# matlab: no
# f2c: yes
# num python: numpy, which is distributed with cygwin
#
#
# ---------------------------------------------------------------------------
# The only place where the User must custimize this installation
# is located at the top here:
#
# Specify the installation directory here:
#
Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8_develop'
#
# Specify the Sundials installation directory here (leave it as a null script
# if you don't want to link sundials in
#
# Sundials_Home=''
Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg'
#
# Specify the Sundials version number (either 2.2, 2.3, or 2.4)
Sundials_Version='2.3'
# Sundials_Version=2.4'
# -----------------------------------------------------------------------------
#
CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/bin/python
export PYTHON_CMD
#
# The full python package works within cygwin. Minimal is needed at the least
#
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
#
# Matlab on the pc is supported through the windows vc++ 8.0 compilation
# environment. Therefore, we turn it off here.
#
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
NUMARRAY_HOME=''
export NUMARRAY_HOME
#
# Turns on extra debugging
#
DEBUG_MODE='y'
export DEBUG_MODE
#
# Numpy must have already been installed in the
# /usr/lib/python2.5/site-packages
# directory before the Cantera installation. If not, you can always
# do a minimal python installation and forego forming Cantera's python interface.
#
USE_NUMPY="y"
export USE_NUMPY
#
# Specify where to find the include files within the numpy distribution
#
NUMPY_INC_DIR="/usr/lib/python2.5/site-packages/numpy/core/include"
export NUMPY_INC_DIR
#
# We use F2C with the cygwin installation. However, the g77 interface should
# work too.
#
BUILD_WITH_F2C="y"
export BUILD_WITH_F2C
BITCOMPILE="32"
export BITCOMPILE
#
# We use the default gcc compilers that come with cygwin. Currently, this
# is gcc v. 3.4.4.
#
CXX='g++'
export CXX
#
CC='gcc'
export CC
#
F77='g77'
export F77
#
# Debug options
#
# -DDEBUG_HKM
# -DDEBUG_BASISOPTIMIZE
# -DDEBUG_CHEMEQUIL
#
CXXFLAGS="-g -Wall "
export CXXFLAGS
CFLAGS=$CXXFLAGS
export CFLAGS
FFLAGS="-g "
export FFLAGS
LDFLAGS='-g'
export LDFLAGS
LCXX_END_LIBS="-lm -lstdc++"
export LCXX_END_LIBS
# The gcc compiler in cygwin will put a .exe extension on anyway. So,
# we might as well define this field as .exe. cygwin will automagically
# equate executable files with no extension as having an .exe extension.
# This is very mysterious. However, the mystery goes away if you define
# these files to have a .exe suffix from the getgo.
EXE_EXT=".exe"
export EXE_EXT
EXTRA_LINK=""
export EXTRA_LINK
MAKE=make
export MAKE
#
# Specify the SUNDIALS option
#
if test -n "$Sundials_Home"
then
USE_SUNDIALS='y'
SUNDIALS_VERSION=$Sundials_Version
else
USE_SUNDIALS='n'
fi
export USE_SUNDIALS
export SUNDIALS_VERSION
#
# Specify where to find the sundials installation directories
#
SUNDIALS_HOME=$Sundials_Home
export SUNDIALS_HOME
#
# Ok, fire off the main preconfig script
#
./preconfig

View file

@ -1,167 +0,0 @@
#!/bin/sh
# ------------------------------------------------------------------------------
#
# Example Cantera pre-preconfig configuration script
# 10/20/09
#
# Platform: CYGWIN_NT-5.1 1.7.1(0.218/5/3)
# Compiler: gcc v. 4.3.4
# Optimization: Debug version
# python: v. 2.5.2 (full installation)
# matlab: no
# f2c: yes
# num python: numpy, which is distributed with cygwin
#
#
# ---------------------------------------------------------------------------
# The only place where the User must custimize this installation
# is located at the top here:
#
# Specify the installation directory here:
#
Cantera_Install_Dir='/cygdrive/c/cygwin_env/arch/cygwin/cantera-1.8.0'
#
# Specify the Sundials installation directory here (leave it as a null script
# if you don't want to link sundials in
#
# Sundials_Home=''
Sundials_Home='/cygdrive/c/cygwin_env/arch/cygwin/sundials-2.3.0_dbg'
#
# Specify the Sundials version number (either 2.2, 2.3, or 2.4)
Sundials_Version='2.3'
# Sundials_Version=2.4'
# -----------------------------------------------------------------------------
#
CANTERA_CONFIG_PREFIX=$Cantera_Install_Dir
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/bin/python
export PYTHON_CMD
#
# The full python package works within cygwin. Minimal is needed at the least
#
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
#
# Matlab on the pc is supported through the windows vc++ 8.0 compilation
# environment. Therefore, we turn it off here.
#
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
NUMARRAY_HOME=''
export NUMARRAY_HOME
#
# Turns on extra debugging
#
DEBUG_MODE='y'
export DEBUG_MODE
#
# Numpy must have already been installed in the
# /usr/lib/python2.5/site-packages
# directory before the Cantera installation. If not, you can always
# do a minimal python installation and forego forming Cantera's python interface.
#
USE_NUMPY="y"
export USE_NUMPY
#
# Specify where to find the include files within the numpy distribution
#
NUMPY_INC_DIR="/usr/lib/python2.5/site-packages/numpy/core/include"
export NUMPY_INC_DIR
#
# We use F2C with the cygwin installation. However, the g77 interface should
# work too.
#
BUILD_WITH_F2C="y"
export BUILD_WITH_F2C
BITCOMPILE="32"
export BITCOMPILE
#
# We use the default gcc compilers that come with cygwin. Currently, this
# is gcc v. 3.4.4.
#
CXX='g++'
export CXX
#
CC='gcc'
export CC
#
F77='g77'
export F77
#
# Debug options
#
# -DDEBUG_HKM
# -DDEBUG_BASISOPTIMIZE
# -DDEBUG_CHEMEQUIL
#
CXXFLAGS="-g -Wall "
export CXXFLAGS
CFLAGS=$CXXFLAGS
export CFLAGS
FFLAGS="-g "
export FFLAGS
LDFLAGS='-g'
export LDFLAGS
LCXX_END_LIBS="-lm -lstdc++"
export LCXX_END_LIBS
# The gcc compiler in cygwin will put a .exe extension on anyway. So,
# we might as well define this field as .exe. cygwin will automagically
# equate executable files with no extension as having an .exe extension.
# This is very mysterious. However, the mystery goes away if you define
# these files to have a .exe suffix from the getgo.
EXE_EXT=".exe"
export EXE_EXT
EXTRA_LINK=""
export EXTRA_LINK
MAKE=make
export MAKE
#
# Specify the SUNDIALS option
#
if test -n "$Sundials_Home"
then
USE_SUNDIALS='y'
SUNDIALS_VERSION=$Sundials_Version
else
USE_SUNDIALS='n'
fi
export USE_SUNDIALS
export SUNDIALS_VERSION
#
# Specify where to find the sundials installation directories
#
SUNDIALS_HOME=$Sundials_Home
export SUNDIALS_HOME
#
# Ok, fire off the main preconfig script
#
./preconfig

View file

@ -1,138 +0,0 @@
#!/bin/sh
#
#
CANTERA_CONFIG_PREFIX=${HOME}/arch/linux/cantera-1.7_develop
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/local/python/2.3.5/bin/python
#PYTHON_CMD=/usr/local/python/2.5.2/bin/python
export PYTHON_CMD
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
WITH_ADSORBATE="n"
export WITH_ADSORBATE
DEBUG_MODE='y'
export DEBUG_MODE
# Note, MATLAB must be built 64 bit on linux.
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab"
export MATLAB_CMD
BUILD_F90_INTERFACE="y"
export BUILD_F90_INTERFACE
BUILD_THREAD_SAFE="n"
export BUILD_THREAD_SAFE
BOOST_INC_DIR=${HOME}/arch/linux/boost/include/boost-1_34_1
export BOOST_INC_DIR
BOOST_LIB_DIR=${HOME}/arch/linux/boost/lib
export BOOST_LIB_DIR
BOOST_THREAD_LIB=boost_thread-gcc34-mt
export BOOST_THREAD_LIB
NUMARRAY_HOME=''
export NUMARRAY_HOME
GRAPHVIZDIR=${HOME}'/arch/linux/bin'
export GRAPHVIZDIR
#
# Only Numeric is installed in the /usr/local/python/2.3.5/lib/python2.3/site-packages
# directory currently.
#
USE_NUMERIC="y"
export USE_NUMERIC
#USE_NUMPY="y"
#export USE_NUMPY
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
BITCOMPILE="32"
export BITCOMPILE
do_purify=0
if test "$do_purify" = 1
then
PURIFY='purify'
CC='gcc -m32 -Wa,--32'
CXX='g++ -m32 -Wa,--32'
F77='g77 -m32 -Wa,--32'
else
CXX='mpiCC'
CC='mpicc'
F77='mpif77'
fi
export CXX
export CC
export F77
export PURIFY
AFLAGS="-g -m32 -Wa,--32"
export AFLAGS
CFLAGS="-g -m32 -Wa,--32 -Wall"
export CFLAGS
WITH_H298MODIFY_CAPABILITY="y"
export WITH_H298MODIFY_CAPABILITY
#
# -DDEBUG_BASISOPTIMIZE
# -DDEBUG_CHEMEQUIL
# -DDEBUG_HKM
# -DH298MODIFY_CAPABILITY
#
CXXFLAGS="-g -m32 -Wa,--32 -Wall -DDEBUG_HKM "
export CXXFLAGS
FFLAGS="-g -m32 -Wa,--32 -DDEBUG_HKM"
export FFLAGS
LDFLAGS='-m32 -Wa,--32'
export LDFLAGS
LCXX_END_LIBS="-lm -lstdc++"
export LCXX_END_LIBS
EXTRA_LINK="-m32 -Wa,--32"
export EXTRA_LINK
MAKE=gmake
export MAKE
#
# This is sundials 2.3
#
USE_SUNDIALS='y'
export USE_SUNDIALS
SUNDIALS_HOME=${HOME}'/arch/linux/sundials'
export SUNDIALS_HOME
./preconfig

View file

@ -1,138 +0,0 @@
#!/bin/sh
#
#
CANTERA_CONFIG_PREFIX=${HOME}/arch/linux/cantera-1.7_develop
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/local/python/2.3.5/bin/python
#PYTHON_CMD=/usr/local/python/2.5.2/bin/python
export PYTHON_CMD
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
WITH_ADSORBATE="n"
export WITH_ADSORBATE
DEBUG_MODE='y'
export DEBUG_MODE
# Note, MATLAB must be built 64 bit on linux.
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab"
export MATLAB_CMD
BUILD_F90_INTERFACE="y"
export BUILD_F90_INTERFACE
BUILD_THREAD_SAFE="n"
export BUILD_THREAD_SAFE
BOOST_INC_DIR=${HOME}/arch/linux/boost/include/boost-1_34_1
export BOOST_INC_DIR
BOOST_LIB_DIR=${HOME}/arch/linux/boost/lib
export BOOST_LIB_DIR
BOOST_THREAD_LIB=boost_thread-gcc34-mt
export BOOST_THREAD_LIB
NUMARRAY_HOME=''
export NUMARRAY_HOME
GRAPHVIZDIR=${HOME}'/arch/linux/bin'
export GRAPHVIZDIR
#
# Only Numeric is installed in the /usr/local/python/2.3.5/lib/python2.3/site-packages
# directory currently.
#
USE_NUMERIC="y"
export USE_NUMERIC
#USE_NUMPY="y"
#export USE_NUMPY
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
BITCOMPILE="32"
export BITCOMPILE
do_purify=0
if test "$do_purify" = 1
then
PURIFY='purify'
CC='gcc -m32 -Wa,--32'
CXX='g++ -m32 -Wa,--32'
F77='g77 -m32 -Wa,--32'
else
CXX='mpiCC'
CC='mpicc'
F77='mpif77'
fi
export CXX
export CC
export F77
export PURIFY
AFLAGS="-O -m32 -Wa,--32"
export AFLAGS
CFLAGS="-O -m32 -Wa,--32 -Wall"
export CFLAGS
WITH_H298MODIFY_CAPABILITY="y"
export WITH_H298MODIFY_CAPABILITY
#
# -DDEBUG_BASISOPTIMIZE
# -DDEBUG_CHEMEQUIL
# -DDEBUG_HKM
# -DH298MODIFY_CAPABILITY
#
CXXFLAGS="-O -m32 -Wa,--32 -Wall -DDEBUG_HKM "
export CXXFLAGS
FFLAGS="-O -m32 -Wa,--32 -DDEBUG_HKM"
export FFLAGS
LDFLAGS='-m32 -Wa,--32'
export LDFLAGS
LCXX_END_LIBS="-lm -lstdc++"
export LCXX_END_LIBS
EXTRA_LINK="-m32 -Wa,--32"
export EXTRA_LINK
MAKE=gmake
export MAKE
#
# This is sundials 2.3
#
USE_SUNDIALS='y'
export USE_SUNDIALS
SUNDIALS_HOME=${HOME}'/arch/linux/sundials'
export SUNDIALS_HOME
./preconfig

View file

@ -1,113 +0,0 @@
#!/bin/sh
#
# This is currently the test base. Meaning that the blessed versions
# of all test problems are created from this configuration.
#
CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/local/python/2.5.2/bin/python
export PYTHON_CMD
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
DEBUG_MODE='y'
export DEBUG_MODE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
BUILD_MATLAB_TOOLBOX="y"
export BUILD_MATLAB_TOOLBOX
INSTALL_BIN=config/install-sh
export INSTALL_BIN
MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab"
export MATLAB_CMD
BUILD_F90_INTERFACE="y"
export BUILD_F90_INTERFACE
NUMARRAY_HOME=''
export NUMARRAY_HOME
USE_NUMPY='y'
export USE_NUMPY
NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include"
export NUMPY_INC_DIR
GRAPHVIZDIR=${HOME}'/arch/linux/bin'
export GRAPHVIZDIR
#
#
USE_NUMERIC="n"
export USE_NUMERIC
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
BITCOMPILE="64"
export BITCOMPILE
AFLAGS='DEBUG'
#CXX='g++ -m32 -Wa,--32'
CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc'
export CXX
CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM'
export CXX_DEPENDS
#CC='gcc -m32 -Wa,--32'
CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc'
export CC
#F77='g77 -m32 -Wa,--32'
F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran'
export F77
CFLAGS="-g -Wall"
export CFLAGS
CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL"
export CXXFLAGS
FFLAGS="-g -DDEBUG_HKM -fno-second-underscore"
export FFLAGS
LDFLAGS=' '
export LDFLAGS
LCXX_END_LIBS="-lgfortran -lm -lstdc++"
export LCXX_END_LIBS
EXTRA_LINK=" "
export EXTRA_LINK
MAKE=gmake
export MAKE
USE_SUNDIALS='y'
export USE_SUNDIALS
SUNDIALS_HOME=${HOME}'/arch/linux64/sundials'
export SUNDIALS_HOME
./preconfig

View file

@ -1,112 +0,0 @@
#!/bin/sh
#
# This is currently the test base. Meaning that the blessed versions
# of all test problems are created from this configuration.
#
CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_Develop
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=${HOME}/arch/linux64_gcc424/python-2.6.4/bin/python
export PYTHON_CMD
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
DEBUG_MODE='y'
export DEBUG_MODE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
WITH_H298MODIFY_CAPABILITY='y'
export WITH_H298MODIFY_CAPABILITY
BUILD_MATLAB_TOOLBOX="y"
export BUILD_MATLAB_TOOLBOX
INSTALL_BIN=config/install-sh
export INSTALL_BIN
MATLAB_CMD="/usr/local/matlab/7.9/bin/matlab"
export MATLAB_CMD
BUILD_F90_INTERFACE="y"
export BUILD_F90_INTERFACE
NUMARRAY_HOME=''
export NUMARRAY_HOME
USE_NUMPY='y'
export USE_NUMPY
NUMPY_INC_DIR="${HOME}/arch/linux64_gcc424/python-2.6.4/lib/python2.6/site-packages/numpy/core/include"
export NUMPY_INC_DIR
GRAPHVIZDIR=${HOME}'/arch/linux/bin'
export GRAPHVIZDIR
#
#
USE_NUMERIC="n"
export USE_NUMERIC
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
BITCOMPILE="64"
export BITCOMPILE
AFLAGS='DEBUG'
CXX='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/g++'
export CXX
CXX_DEPENDS='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM'
export CXX_DEPENDS
CC='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/gcc'
export CC
F77='/sierra/Sntools/extras/compilers/gcc-4.2.4/bin/gfortran'
export F77
CFLAGS="-g -Wall"
export CFLAGS
CXXFLAGS="-g -Wall -Woverloaded-virtual -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL"
export CXXFLAGS
FFLAGS="-g -DDEBUG_HKM -fno-second-underscore"
export FFLAGS
LDFLAGS=' '
export LDFLAGS
LCXX_END_LIBS="-lgfortran "
export LCXX_END_LIBS
EXTRA_LINK=" "
export EXTRA_LINK
MAKE=gmake
export MAKE
USE_SUNDIALS='y'
export USE_SUNDIALS
SUNDIALS_HOME='${HOME}/arch/linux64_gcc424/sundials-2.4.0_dbg'
export SUNDIALS_HOME
./preconfig

View file

@ -1,111 +0,0 @@
#!/bin/sh
#
#
CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/local/python/2.5.2/bin/python
export PYTHON_CMD
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
DEBUG_MODE='y'
export DEBUG_MODE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
BUILD_MATLAB_TOOLBOX="y"
export BUILD_MATLAB_TOOLBOX
INSTALL_BIN=config/install-sh
export INSTALL_BIN
MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab"
export MATLAB_CMD
BUILD_F90_INTERFACE="y"
export BUILD_F90_INTERFACE
NUMARRAY_HOME=''
export NUMARRAY_HOME
USE_NUMPY='y'
export USE_NUMPY
NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include"
export NUMPY_INC_DIR
GRAPHVIZDIR=${HOME}'/arch/linux/bin'
export GRAPHVIZDIR
#
#
USE_NUMERIC="n"
export USE_NUMERIC
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
BITCOMPILE="64"
export BITCOMPILE
AFLAGS='DEBUG'
#CXX='g++ -m32 -Wa,--32'
CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc'
export CXX
CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM'
export CXX_DEPENDS
#CC='gcc -m32 -Wa,--32'
CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc'
export CC
#F77='g77 -m32 -Wa,--32'
F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran'
export F77
CFLAGS="-O -Wall"
export CFLAGS
CXXFLAGS="-O -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL"
export CXXFLAGS
FFLAGS="-O -DDEBUG_HKM -fno-second-underscore"
export FFLAGS
LDFLAGS=' '
export LDFLAGS
LCXX_END_LIBS="-lgfortran -lm -lstdc++"
export LCXX_END_LIBS
EXTRA_LINK=" "
export EXTRA_LINK
MAKE=gmake
export MAKE
USE_SUNDIALS='y'
export USE_SUNDIALS
SUNDIALS_HOME=${HOME}'/arch/linux64/sundials'
export SUNDIALS_HOME
./preconfig

View file

@ -1,106 +0,0 @@
#!/bin/sh
#
# This is currently the test base. Meaning that the blessed versions
# of all test problems are created from this configuration.
#
CANTERA_CONFIG_PREFIX=${HOME}/arch/mac/cantera-1.8_python251_numpy
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/bin/python
export PYTHON_CMD
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
DEBUG_MODE='y'
export DEBUG_MODE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
INSTALL_BIN=config/install-sh
export INSTALL_BIN
# MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab"
# export MATLAB_CMD
BUILD_F90_INTERFACE="n"
export BUILD_F90_INTERFACE
USE_NUMPY='y'
export USE_NUMPY
NUMPY_INC_DIR="/home/hkmoffa/arch/mac/lib/python2.5/site-packages/numpy/core/include"
export NUMPY_INC_DIR
#GRAPHVIZDIR=${HOME}'/arch/linux/bin'
#export GRAPHVIZDIR
#
#
USE_NUMERIC="n"
export USE_NUMERIC
BUILD_WITH_F2C="y"
export BUILD_WITH_F2C
BITCOMPILE="64"
export BITCOMPILE
AFLAGS='DEBUG'
CXX='gcc'
export CXX
CXX_DEPENDS='g++ -MM'
export CXX_DEPENDS
CC='gcc'
export CC
F77='g77'
export F77
CFLAGS="-g -Wall"
export CFLAGS
CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL"
export CXXFLAGS
FFLAGS="-g -DDEBUG_HKM -fno-second-underscore"
export FFLAGS
LDFLAGS=' '
export LDFLAGS
LCXX_END_LIBS=" -lm -lstdc++"
export LCXX_END_LIBS
EXTRA_LINK=" "
export EXTRA_LINK
MAKE=make
export MAKE
USE_SUNDIALS='n'
export USE_SUNDIALS
SUNDIALS_HOME='/home/hkmoffa/arch/linux64/sundials'
export SUNDIALS_HOME
./preconfig

View file

@ -1,141 +0,0 @@
#!/bin/sh
#
# Sierra 64 bit setup:
# -xO4 -xtarget=native64 -xarch=native64 -xcode=pic32 -DSUN10 -library=stlport4
#
# Sierra warnings setup:
# +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhid enmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit
#
# Notes:
# When you add flsgs with % in them python won't build, because there is an
# error in the python distutils routines. I am currently manually
# fixing these.
#
# Program Names:
#
MAKE=gmake
export MAKE
#
# Pointers to the 64 bit python built with Sunpro compilers
PYTHON_DIR=${HOME}/arch/sol_py64
export PYTHON_DIR
PYTHON_CMD=${HOME}/arch/sol_py64/bin/python
export PYTHON_CMD
#
# Use the CC compiler for C++ code
CXX=CC
export CXX
#
# Specification of the c compiler
#
CC=cc
export CC
CXX_DEPENDS='CC -xM1'
export CXX_DEPENDS
USE_NUMERIC='n'
export USE_NUMERIC
#
# HKM 7/22/09
# The matlab option is currently not working. Matlab uses the gcc
# compiler. This setup uses the solaris compiler. I can get
# the matlab extensions to compile. But, when I run matlab
# I get an unsatisfied external
# When I add the commands:
# -l/opt/SUNWspro/lib/f9 -lCrun -lCstd -lfsu
# to the matlab build, I can get rid of the runtime unsatisfied
# external. However, I immediate crash dump matlab. This
# suggests that there are duplicate Cstd routines from gcc and
# from the solaris compilers fighting it out.
# I believe the solution will involve compiling everything
# with gcc in order to get matlab on solaris to work.
#
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
DEBUG_MODE="y"
export DEBUG_MODE
#
# Compiler Flags
#
BITCOMPILE="64"
export BITCOMPILE
#
# remember the issue with % and python
#
EFLAGS=" +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhidenmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit"
#AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32 -library=stlport4"
AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32"
export AFLAGS
F77=f77
export F77
F90=f95
export F90
FFLAGS="-g -xtarget=native64 -xarch=native64 -xcode=pic32 "
export FFLAGS
CFLAGS="-g -xtarget=native64 -xarch=native64 -xcode=pic32 -v "
export CFLAGS
CXXFLAGS="-g $AFLAGS $EFLAGS -DDEBUG_HKM"
export CXXFLAGS
LCXX_END_LIBS="-lm "
export LCXX_END_LIBS
# other useful endlibs for solaris 64 bit are
# -mt -lsunmath -lfsu
USE_SUNDIALS='n'
export USE_SUNDIALS
WITH_VCSNONIDEAL='y'
export WITH_VCSNONIDEAL
#
# Location Variables - set the directory to point to
# a 64-bit specific directory.
#
CANTERA_INSTALL_DIR=${HOME}/arch/sol_py64/cantera-1.8
export CANTERA_INSTALL_DIR
CANTERA_CONFIG_PREFIX=${HOME}/arch/sol_py64/cantera-1.8
export CANTERA_CONFIG_PREFIX
#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"}
#export CANTERA_PYTHON_HOME
SET_PYTHON_SITE_PACKAGE_TOPDIR="y"
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=${HOME}"/arch/sol_py64/cantera-1.8"
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_PACKAGE="full"
#PYTHON_PACKAGE="minimal"
#PYTHON_PACKAGE="none"
export PYTHON_PACKAGE
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
#
# Archive commands
#
ARCHIVE="CC -xar -xcode=pic32 -o "
export ARCHIVE
#
# Invoke the regular configure script
#
./preconfig

View file

@ -1,141 +0,0 @@
#!/bin/sh
#
# Sierra 64 bit setup:
# -xO4 -xtarget=native64 -xarch=native64 -xcode=pic32 -DSUN10 -library=stlport4
#
# Sierra warnings setup:
# +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhid enmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit
#
# Notes:
# When you add flsgs with % in them python won't build, because there is an
# error in the python distutils routines. I am currently manually
# fixing these.
#
# Program Names:
#
MAKE=gmake
export MAKE
#
# Pointers to the 64 bit python built with Sunpro compilers
PYTHON_DIR=${HOME}/arch/sol_py64
export PYTHON_DIR
PYTHON_CMD=${HOME}/arch/sol_py64/bin/python
export PYTHON_CMD
#
# Use the CC compiler for C++ code
CXX=CC
export CXX
#
# Specification of the c compiler
#
CC=cc
export CC
CXX_DEPENDS='CC -xM1'
export CXX_DEPENDS
USE_NUMERIC='n'
export USE_NUMERIC
#
# HKM 7/22/09
# The matlab option is currently not working. Matlab uses the gcc
# compiler. This setup uses the solaris compiler. I can get
# the matlab extensions to compile. But, when I run matlab
# I get an unsatisfied external
# When I add the commands:
# -l/opt/SUNWspro/lib/f9 -lCrun -lCstd -lfsu
# to the matlab build, I can get rid of the runtime unsatisfied
# external. However, I immediate crash dump matlab. This
# suggests that there are duplicate Cstd routines from gcc and
# from the solaris compilers fighting it out.
# I believe the solution will involve compiling everything
# with gcc in order to get matlab on solaris to work.
#
BUILD_MATLAB_TOOLBOX="n"
export BUILD_MATLAB_TOOLBOX
DEBUG_MODE="y"
export DEBUG_MODE
#
# Compiler Flags
#
BITCOMPILE="64"
export BITCOMPILE
#
# remember the issue with % and python
#
EFLAGS=" +w2 -errtags -erroff=doubunder,reftotemp,ppextraw,inllargeint,inllargeuse,wnoelseretvalue,truncwarn,diffenumtype,notused,wvarhidenmem,badcastw,hidef -errwarn=%all,no%wunreachable,no%partinit"
#AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32 -library=stlport4"
AFLAGS=" -xtarget=native64 -xarch=native64 -xcode=pic32"
export AFLAGS
F77=f77
export F77
F90=f95
export F90
FFLAGS="-O -xtarget=native64 -xarch=native64 -xcode=pic32 "
export FFLAGS
CFLAGS="-O -xtarget=native64 -xarch=native64 -xcode=pic32 -v "
export CFLAGS
CXXFLAGS="-O $AFLAGS $EFLAGS -DDEBUG_HKM"
export CXXFLAGS
LCXX_END_LIBS="-lm "
export LCXX_END_LIBS
# other useful endlibs for solaris 64 bit are
# -mt -lsunmath -lfsu
USE_SUNDIALS='n'
export USE_SUNDIALS
WITH_VCSNONIDEAL='y'
export WITH_VCSNONIDEAL
#
# Location Variables - set the directory to point to
# a 64-bit specific directory.
#
CANTERA_INSTALL_DIR=${HOME}/arch/sol_py64/cantera-1.8.0
export CANTERA_INSTALL_DIR
CANTERA_CONFIG_PREFIX=${HOME}/arch/sol_py64/cantera-1.8.0
export CANTERA_CONFIG_PREFIX
#CANTERA_PYTHON_HOME=${CANTERA_PYTHON_HOME:="$HOME/python_modules"}
#export CANTERA_PYTHON_HOME
SET_PYTHON_SITE_PACKAGE_TOPDIR="y"
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=${HOME}"/arch/sol_py64/cantera-1.8.0"
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_PACKAGE="full"
#PYTHON_PACKAGE="minimal"
#PYTHON_PACKAGE="none"
export PYTHON_PACKAGE
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
#
# Archive commands
#
ARCHIVE="CC -xar -xcode=pic32 -o "
export ARCHIVE
#
# Invoke the regular configure script
#
./preconfig

View file

@ -1,113 +0,0 @@
#!/bin/sh
#
# This is currently the test base. Meaning that the blessed versions
# of all test problems are created from this configuration.
#
CANTERA_CONFIG_PREFIX=${HOME}/arch/linux64_gcc424/cantera-1.8_python252_numpy
export CANTERA_CONFIG_PREFIX
SET_PYTHON_SITE_PACKAGE_TOPDIR=y
export SET_PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_SITE_PACKAGE_TOPDIR=$CANTERA_CONFIG_PREFIX
export PYTHON_SITE_PACKAGE_TOPDIR
PYTHON_CMD=/usr/local/python/2.5.2/bin/python
export PYTHON_CMD
PYTHON_PACKAGE='full'
#PYTHON_PACKAGE='minimal'
export PYTHON_PACKAGE
DEBUG_MODE='y'
export DEBUG_MODE
WITH_IDEAL_SOLUTIONS="y"
export WITH_IDEAL_SOLUTIONS
WITH_ELECTROLYTES="y"
export WITH_ELECTROLYTES
WITH_VCSNONIDEAL="y"
export WITH_VCSNONIDEAL
BUILD_MATLAB_TOOLBOX="y"
export BUILD_MATLAB_TOOLBOX
INSTALL_BIN=config/install-sh
export INSTALL_BIN
MATLAB_CMD="/usr/local/matlab/7.4/x86-64/bin/matlab"
export MATLAB_CMD
BUILD_F90_INTERFACE="y"
export BUILD_F90_INTERFACE
NUMARRAY_HOME=''
export NUMARRAY_HOME
USE_NUMPY='y'
export USE_NUMPY
NUMPY_INC_DIR="/usr/local/python/2.5.2/lib/python2.5/site-packages/numpy/core/include"
export NUMPY_INC_DIR
GRAPHVIZDIR=${HOME}'/arch/linux/bin'
export GRAPHVIZDIR
#
#
USE_NUMERIC="n"
export USE_NUMERIC
BUILD_WITH_F2C="n"
export BUILD_WITH_F2C
BITCOMPILE="64"
export BITCOMPILE
AFLAGS='DEBUG'
#CXX='g++ -m32 -Wa,--32'
CXX='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc'
export CXX
CXX_DEPENDS='/home/sntools/extras/compilers/gcc-4.2.4/bin/g++ -MM'
export CXX_DEPENDS
#CC='gcc -m32 -Wa,--32'
CC='/home/sntools/extras/compilers/gcc-4.2.4/bin/gcc'
export CC
#F77='g77 -m32 -Wa,--32'
F77='/home/sntools/extras/compilers/gcc-4.2.4/bin/gfortran'
export F77
CFLAGS="-g -Wall"
export CFLAGS
CXXFLAGS="-g -Wall -DDEBUG_HKM -DDEBUG_HKM_EPEQUIL"
export CXXFLAGS
FFLAGS="-g -DDEBUG_HKM -fno-second-underscore"
export FFLAGS
LDFLAGS=' '
export LDFLAGS
LCXX_END_LIBS="-lgfortran -lm -lstdc++"
export LCXX_END_LIBS
EXTRA_LINK=" "
export EXTRA_LINK
MAKE=gmake
export MAKE
USE_SUNDIALS='y'
export USE_SUNDIALS
SUNDIALS_HOME=${HOME}'/arch/linux64/sundials'
export SUNDIALS_HOME
./preconfig