good news: I figured out how to enable core dumps ...
# development
w
good news: I figured out how to enable core dumps on osx. bad news: I immediately created a core dump so large that my machine ran out of disk and swap space
1
h
How did you do this?
w
1. set
ulimit -c
in the relevant shell, or in all shells 2.
sudo chmod 1777 /cores
(see https://stackoverflow.com/questions/58844265/mac-catalina-corefile-locations)
👍 1
then can test by killing a process with
kill -SIGILL $somepid
and confirm that you get something in
/cores