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
This leads to the debugger not being able to launch as its dynamic libraries are not available, even though I made them available through the use of a dev environment (in my case, nix-shell) which overrides LD_LIBRARY_PATH to work. Manually copying and pasting the command that the CLI used to launch firedbg-debugger in my terminal without the LD_LIBRARY_PATH override works.
To fix this, LD_LIBRARY_PATH should be set to the equivalent of (in shell syntax for clarity)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hey,
I've noticed that the FireDBG CLI, in
run_debugger
, seems to discard the existingLD_LIBRARY_PATH
that thefiredbg
CLI itself received:FireDBG.for.Rust/command/src/main.rs
Lines 815 to 821 in a88c160
This leads to the debugger not being able to launch as its dynamic libraries are not available, even though I made them available through the use of a dev environment (in my case,
nix-shell
) which overridesLD_LIBRARY_PATH
to work. Manually copying and pasting the command that the CLI used to launchfiredbg-debugger
in my terminal without theLD_LIBRARY_PATH
override works.To fix this,
LD_LIBRARY_PATH
should be set to the equivalent of (in shell syntax for clarity)That is, append the desired library search path to the search path given to the CLI.
Beta Was this translation helpful? Give feedback.
All reactions