https://github.com/pymc-devs/pymc3
Raw File
Tip revision: cad8ec20169fa0d457d98b0f89100588be79b4c5 authored by Peadar Coyle on 02 January 2017, 00:28:08 UTC
Merging (#1635)
Tip revision: cad8ec2
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