Closed rickvipond closed 7 years ago
For anyone reading this, on OSX using Homebrew python changing the .so filenames in jitpy's init.py to .dylib and setting CFLAGS gets it to work
export CFLAGS="-I /usr/local/lib/python2.7/site-packages/numpy/core/include $CFLAGS"
It's looking for a .so but on OSX it's a dylib:
Traceback (most recent call last): File "al_csa_numpy.py", line 28, in <module> setup('/Users/rickvipond/Sites/pypy_binaries/pypy2-v5.7.1-osx64/bin/pypy') File "/Users/rickvipond/.virtualenvs/coachfairer/lib/python2.7/site-packages/jitpy/__init__.py", line 48, in setup raise Exception("Can't find libpypy-c.so, point PYPY_HOME to " Exception: Can't find libpypy-c.so, point PYPY_HOME to directory with libpypy-c.so
Changing the code to dylib spawns a new error
Thoughts?