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
307 B
16 lines
307 B
#!/bin/bash |
|
|
|
unset LDFLAGS |
|
|
|
cd ../fortran/build_help |
|
$FC -o sizes -fopenmp omp_sizes.f90 |
|
python sub_sizes.py |
|
|
|
cd .. |
|
$FC -E ompgen.F90 -fopenmp -cpp -o omp.f90 |
|
cd .. |
|
|
|
python setup.py clean --all |
|
python setup.py config_fc --f90flags="-mtune=generic -fopenmp" build_ext --libraries="gomp" build |
|
pip install . |
|
|
|
|