forked from 3rdparty/wrf-python
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
422 B
16 lines
422 B
#!/bin/bash |
|
|
|
cd ./fortran |
|
gfortran -E ompgen.F90 -fopenmp -cpp -o omp.f90 |
|
f2py *.f90 -m _wrffortran -h wrffortran.pyf --overwrite-signature |
|
cd .. |
|
|
|
if [ `uname` == Darwin ]; then |
|
LDFLAGS="$LDFLAGS -undefined dynamic_lookup -bundle" |
|
fi |
|
|
|
$PYTHON setup.py config_fc --f90flags="-mtune=generic -fopenmp" build_ext --libraries="gomp" build |
|
|
|
$PYTHON setup.py install --single-version-externally-managed --record=record.txt |
|
|
|
|
|
|