Okay, I'll try some solutions.
Some more things to note:
I don't have an antivirus.
4coder_default_bindings.cpp is DEFINITELY there
I've got both a hard drive and an SSD, I've tried running on both the hard drive and the SSD, there is no change in result.
Here's a big one that I just found out from messing about. I have both an SSD and a Hard Drive, I store only my OS and VS on my SSD and I tried to run 4coder on my hard drive, which resulted in the "Cannot open source file". Now I've tried running 4coder from my SSD and I get the following error:
1
2
3
4
5
6
7
8
9
10
11
12
13 | PS C:\Users\Aled J\Desktop\4coder> .\buildsuper.bat
'C:\Users\Aled' is not recognized as an internal or external command,
operable program or batch file.
'cl' is not recognized as an internal or external command,
operable program or batch file.
'metadata_generator' is not recognized as an internal or external command,
operable program or batch file.
'cl' is not recognized as an internal or external command,
operable program or batch file.
Could Not Find C:\Users\Aled J\Desktop\4coder\metadata_generator*
Could Not Find C:\Users\Aled J\Desktop\4coder\*.exp
Could Not Find C:\Users\Aled J\Desktop\4coder\*.obj
Could Not Find C:\Users\Aled J\Desktop\4coder\*.lib
|
As for your solution, I assume this one:
| cl /I"C:\Users\Oliver\source\ " /W4 /wd4310 /wd4100 /wd4201 /wd4505 /wd4996 /wd4127 /wd4510 /wd4512 /wd4610 /wd4457 /WX /GR- /nologo /FC /Zi 4coder_default_bindings.cpp /Fecustom_4coder /LD /link /INCREMENTAL:NO /OPT:REF /EXPORT:get_bindings /EXPORT:get_alpha_4coder_version
|
I change it to my appropriate path:
| cl /I"A:\Documents\4coder" /W4 /wd4310 /wd4100 /wd4201 /wd4505 /wd4996 /wd4127 /wd4510 /wd4512 /wd4610 /wd4457 /WX /GR- /nologo /FC /Zi 4coder_default_bindings.cpp /Fecustom_4coder /LD /link /INCREMENTAL:NO /OPT:REF /EXPORT:get_bindings /EXPORT:get_alpha_4coder_version
|
And I get a cl not recognized returned.
So this is a problem with Visual Studio?