When I build through 4coder, Clang-cl cannot seem to find link.exe. The directory the linker is in my path, and 4coder is launched with this script
| call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" -arch=amd64 -host_arch=amd64 -no_logo
set path=[Redacted]\Documents\project920\code;%path%
pushd [Redacted]\Documents\project920\code
start C:\4coder\4ed.exe
popd
start devenv
|
This is the directory for the linker in my path:
| C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.10.24728\bin\
|
But this is the error Clang-cl gives
| clang-cl.exe: error: unable to execute command: program not executable
clang-cl.exe: error: linker command failed with exit code 1 (use -v to see invocation)
|
The full error log can be found here :
https://gist.github.com/anonymous/4f334a9a5051960331ea5d78d5a79407
It's not clear what exactly is the issue. Has anyone ran into this?