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
$ ./rtld_default # Works
$ sui ./rtld_default test.txt ./patched
$ ./patched
Error: dlsym(RTLD_DEFAULT, exported_sym): symbol not found
thread 'main' panicked at rtld_default.rs:19:9:
Symbol not found
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
$ file ./patched
./patched: Mach-O 64-bit executable x86_64
The text was updated successfully, but these errors were encountered:
Root cause of denoland/deno#25879 and denoland/deno#25940. Only reproducible on
x86_64-apple-darwin
$ rustc --target x86_64-apple-darwin -Clink-arg="-Wl,-exported_symbol,_exported_sym" rtld_default.rs
The text was updated successfully, but these errors were encountered: