Hello,
I was trying to build on Windows 7 x64, but was having issues. After a bit of debugging I've "solved" the issue for me. I'm just posting to make you aware if you aren't already.
It's a simple bug within V8Update.cmd
Basically, you're assuming that I am using VS 2012, when I'm using VS2010.
The part in question is here:
I was trying to build on Windows 7 x64, but was having issues. After a bit of debugging I've "solved" the issue for me. I'm just posting to make you aware if you aren't already.
It's a simple bug within V8Update.cmd
Basically, you're assuming that I am using VS 2012, when I'm using VS2010.
The part in question is here:
:SetMSVSVersion
if "%VisualStudioVersion%"=="12.0" goto UseMSVS2013
set GYP_MSVS_VERSION=2012
goto SetMSVSVersionDone
:UseMSVS2013
set GYP_MSVS_VERSION=2013
:SetMSVSVersionDone
After changing set GYP_MSVS_VERSION=2012 to set GYP_MSVS_VERSION=2010 it started working for me.