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
Provide a configuration mechanism for indicating the path to nasm. Currently for perl we have fn get_perl_exe() -> PathBuf { get_command("PERL_EXECUTABLE", "perl") for this, which lets the user use $PERL_EXECUTABLE to provide the path to perl, or else we just expect it to be in $PATH. I guess it wouldn't be the end of the world to do similar for nasm. I think we should provide a cfg option for this so that people can put it in their configuration file instead of writing a script to set $PATH. Whatever we decide, we can change what we do for perl to match.
The text was updated successfully, but these errors were encountered:
We need to have a way to configure the path to
nasm
:fn get_perl_exe() -> PathBuf { get_command("PERL_EXECUTABLE", "perl")
for this, which lets the user use$PERL_EXECUTABLE
to provide the path to perl, or else we just expect it to be in$PATH
. I guess it wouldn't be the end of the world to do similar for nasm. I think we should provide acfg
option for this so that people can put it in their configuration file instead of writing a script to set$PATH
. Whatever we decide, we can change what we do for perl to match.The text was updated successfully, but these errors were encountered: