You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you compile a dylib, say libfoo.dylib and open it using
file = MachO::MachOFile.new("libfoo.dylib")
and then use file.delete_rpath to delete an LC_RPATH entry, nothing happens. I do get a large amount of text in my terminal, but that's from delete_rpath dumping raw_data entries in my terminal.
On the other hand, using MachO::Tools.delete_rpath does seem to work.
I'll try to dig into why one seems to be working when the other doesn't.
The text was updated successfully, but these errors were encountered:
If you compile a
dylib
, saylibfoo.dylib
and open it usingand then use
file.delete_rpath
to delete anLC_RPATH
entry, nothing happens. I do get a large amount of text in my terminal, but that's fromdelete_rpath
dumpingraw_data
entries in my terminal.On the other hand, using
MachO::Tools.delete_rpath
does seem to work.I'll try to dig into why one seems to be working when the other doesn't.
The text was updated successfully, but these errors were encountered: