https://github.com/pymc-devs/pymc3
Raw File
Tip revision: 140f417bc9291a75633c7875d2fcb299f793a183 authored by John Salvatier on 18 June 2015, 06:34:04 UTC
commas
Tip revision: 140f417
buildosx
#!/bin/sh
export CFLAGS="-arch x86_64"
export FFLAGS="-static -ff2c -arch x86_64"
export LDFLAGS="-Wall -undefined dynamic_lookup -bundle -arch x86_64"
rm -rf build
python setupegg.py bdist_egg
back to top