From charlesreid1

(Created page with "=Snow Leopard= The following should get you taken care of, with respect to scons installation of Cantera, on OS X: <pre> #/bin/sh scons build \ f90_interface=n \ F90='...")
 
No edit summary
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Main|Cantera}}
=Snow Leopard=
=Snow Leopard=


Line 4: Line 6:


<pre>
<pre>
#/bin/sh
#!/bin/sh


scons build \
scons build \
Line 23: Line 25:
scons install
scons install
</pre>
</pre>
{{CanteraFlag}}

Latest revision as of 07:42, 17 April 2017

Snow Leopard

The following should get you taken care of, with respect to scons installation of Cantera, on OS X:

#!/bin/sh

scons build \
    f90_interface=n \
    F90='gfortran ' \
    F90FLAGS='-arch x86_64' \
    cc_flags='-arch x86_64' \
    cxx_flags='-arch x86_64' \
    prefix=$HOME/pkg/cantalysis/build \
    python_package=full \
    with_html_log_files=yes \
    use_sundials=y \
    sundials_include=$HOME/pkg/sundials/std/include \
    sundials_libdir=$HOME/pkg/sundials/std/lib \
    optimize=no \
    debug=no \
&& \
scons install