Folder USER/src - can be deleted safely? #436
-
Hi ruby-install experts, I've installed ruby 3.1.2 with install-ruby via homebrew. The installation failed twice just as described here: #430, before I found a solution (ruby-install ruby -- --enable-shared, it's a M1 Mac). There's a "src" folder now in my user folder with an unpacked ruby source and a ruby source tar. /Users//src/ruby-3.1.2/.. Can I safely delete those or is there a built in way to clean up the presumably temporary files? Best regards |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
You technically can delete them, however there are reasons why it's a good idea to keep it around.
|
Beta Was this translation helpful? Give feedback.
You technically can delete them, however there are reasons why it's a good idea to keep it around.
ruby
segfault usinggdb
,gdb
can print the actual lines of the source code where the crash is occurring by reading them from the source files. If the source code which ruby was compiled from is deleted,gdb
will only print the filename/line number.