When running a target program, spike should look for that program in paths specified by the PATH environment variable as well.
Currently, when I run spike pk with both spike and pk being in PATH, I get the following error. When I run the same command with the absolute path to pk, it works fine.
$ spike pk ...
terminate called after throwing an instance of 'std::runtime_error'
what(): could not open pk (did you misspell it? If VCS, did you forget +permissive/+permissive-off?)
When running a target program, spike should look for that program in paths specified by the
PATH
environment variable as well.Currently, when I run
spike pk
with bothspike
andpk
being inPATH
, I get the following error. When I run the same command with the absolute path topk
, it works fine.Thanks!