I compiled my code like this to enable Asan:
g++ -O0 -g -fsanitize=address -fno-omit-frame-pointer
but it never generates a core dump so that I can later examine the details of the error. How can I generate it?
I compiled my code like this to enable Asan:
g++ -O0 -g -fsanitize=address -fno-omit-frame-pointer
but it never generates a core dump so that I can later examine the details of the error. How can I generate it?