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
For people who are not super familiar with pybind or cmake, if you want to generate the debug information for the shared library, you will need to comment the line pybind11_strip(ndarray_backend_cpu) and then compile it with regular cmake debug flag. Otherwise, the debug info will get stripped and you could not use debugging tools like (gdb, valgrind, etc.).
The text was updated successfully, but these errors were encountered:
For people who are not super familiar with
pybind
orcmake
, if you want to generate the debug information for the shared library, you will need to comment the linepybind11_strip(ndarray_backend_cpu)
and then compile it with regular cmake debug flag. Otherwise, the debug info will get stripped and you could not use debugging tools like (gdb, valgrind, etc.).The text was updated successfully, but these errors were encountered: