WillAyd commented on PR #2604:
URL: https://github.com/apache/arrow-adbc/pull/2604#issuecomment-2833484098

   From personal experience I've found ASAN challenging to use when launched 
via the Python interpreter. ASAN itself will detect some leaks from most 
version of CPython, so the only way I have gotten it to reliably run is to turn 
off leak detection while also making sure to LD_PRELOAD the ASAN library (this 
is required unless the Python interpreter itself was built with ASAN support)
   
   ```bash
   ASAN_OPTIONS=detect_leaks=0 LD_PRELOAD=$(gcc -print-file-name=libasan.so)" 
python ...
   ```
   
   Without that, I have seen that issue where you end up with an endless loop 
of ASAN_ERROR:DeadlySignal (or something to the effect) which is the error you 
are seeing right?


-- 
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: github-unsubscr...@arrow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to