blob: 37e7be2881ea476d05010043cc2c29739f5af9eb (
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=$(which 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
|