mgorny commented on issue #47252: URL: https://github.com/apache/arrow/issues/47252#issuecomment-3267170409
> I've tried this and can reproduce the bug, the problem is that debug symbols are absent Ah, sorry. You're going to need to install debugedit first: ``` emerge -1vg --jobs debugedit ``` You can set flags prior to compiling Arrow, e.g.: ``` export CFLAGS='-Og -g -DXXH_NO_INLINE_HINTS=1' export CXXFLAGS='-Og -g -DXXH_NO_INLINE_HINTS=1' # install split debug files and sources for gdb export FEATURES="splitdebug installsources" ``` If you have them installed already, you can recompile by doing: ``` emerge -1v apache-arrow pyarrow ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
