I recently installed SBCL 2.2.8 on my Windows, and also installed MSYS. In Command Prompt(cmd) calling SBCL works well:
sbcl
This is SBCL 2.2.8, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.
But when I run the same command "sbcl" on MinGW64 shell, it can't find tha binary:
MINGW64 ~
$ sbcl
bash: sbcl: command not found
Is there a way to, sort of, "import" the binaries installed on Windows into MSYS or MinGW system? How do I configure MinGW so that I can call Windows binaries in the MinGW shell?
Expected result: calling a binary installed on Windows from MinGW:
MINGW64 ~
$ sbcl
This is SBCL 2.2.8, an implementation of ANSI Common Lisp.
More information about SBCL is available at <http://www.sbcl.org/>.