forked from 3rdparty/wrf-python
4 changed files with 29 additions and 17 deletions
@ -1,2 +1,2 @@ |
|||||||
pip install --global-option build --global-option --compiler=mingw32 --global-option --fcompiler=gnu95 . |
python setup.py build --compiler=mingw32 --fcompiler=gnu95 install --single-version-externally-managed --record=record.txt |
||||||
|
|
||||||
|
@ -1,11 +1,10 @@ |
|||||||
#!/bin/sh |
#!/bin/bash |
||||||
|
|
||||||
if [ `uname` == Darwin ]; then |
if [ `uname` == Darwin ]; then |
||||||
LDFLAGS="$LDFLAGS -undefined dynamic_lookup -bundle" |
LDFLAGS="$LDFLAGS -undefined dynamic_lookup -bundle" |
||||||
fi |
fi |
||||||
|
|
||||||
|
$PYTHON setup.py build |
||||||
pip install . |
$PYTHON setup.py install --single-version-externally-managed --record=record.txt |
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in new issue