You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
But I'm getting linking errors on loading the py.pd_linux external in puredata... (says symbol PyExc_ValueError is undefined even tho I make sure to link -lpython3 at build time...)
But I'm getting linking errors on loading the py.pd_linux external in puredata... (says symbol PyExc_ValueError is undefined even tho I make sure to link -lpython3 at build time...)
Had to set rpath for better linking. Made a pull request for linking reinforcement and newer numpy versions support
in pybuffer.cpp, the
PY_NUMPY_BUFFER_FORMAT
is defined only ifPY_NUMPY
is already defined:py/source/pybuffer.cpp
Lines 31 to 37 in 35138a0
but later on, it is used even if
PY_NUMPY
is not defined:py/source/pybuffer.cpp
Line 261 in 35138a0
this obviously break the build if
PY_NUMPY
is not defined...The text was updated successfully, but these errors were encountered: