From charlesreid1

(Created page with "This is for Cantera 2.1.1 on Ubuntu 12.04. I put this stuff in a file called <code>run_scons.sh</code>. If you have already run scons, then changed your scons command, don't f...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
This is for Cantera 2.1.1 on Ubuntu 12.04.
{{Main|Cantera}}
 
This scons command is for building/running Cantera 2.1.1 on Ubuntu 12.04.


I put this stuff in a file called <code>run_scons.sh</code>.  
I put this stuff in a file called <code>run_scons.sh</code>.  
Line 24: Line 26:




[[Category:Cantera]]
{{CanteraFlag}}

Latest revision as of 07:39, 17 April 2017

This scons command is for building/running Cantera 2.1.1 on Ubuntu 12.04.

I put this stuff in a file called run_scons.sh.

If you have already run scons, then changed your scons command, don't forget to run rm cantera.conf before you try and re-run scons.

#/bin/sh

scons build \
    prefix=$HOME/main/pkg/cantera/2.1.1 \
    cxx_flags="-fPIC" \
    python_package=new \
    use_sundials=y \
    f90_interface=n \
    build_with_f2c=no \
    sundials_include=$HOME/main/pkg/sundials/2.5.0/include \
    sundials_libdir=$HOME/main/pkg/sundials/2.5.0/lib \
    debug=no \
&& \
scons install