blob: d9aa36064ab407aa68c58278bd802e6b1bfb8169 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
export FCFLAGS="$FCFLAGS -fPIC"
if [[ `uname` == Darwin ]]; then
export GFORTRAN=/sw/bin/gfortran
if [[ `uname -m` == x86_64 ]]; then
export CFLAGS="$CFLAGS -m64"
export LDFLAGS="$LDFLAGS -m64"
fi
else
# Use the compilers provided by conda. The activation of the build
# environment defines the GCC and GFORTRAN env vars.
export CC=$CC
fi
./waf configure --prefix=$PREFIX --release-with-symbols
./waf build
./waf install
|