Hi,

VS2010 Express does not have 64 bit compiler and vcvars64.bat. You need to install some more tools for 64bit build.

Install them in the following order:
    Visual Studio 2010 Express;
    Windows SDK 7.1;
    Visual Studio 2010 SP1;
    Visual C++ 2010 SP1 Compiler Update for the Windows SDK 7.1.
Also recommended to install DirectX SDK

You need create your own bat file that enables the right values for the environment. It should be probably similar to this:

set LIB=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\LIB\amd64;C:\Program Files\Microsoft SDKs\Windows\v7.1\Lib\x64;

set INCLUDE=c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE;C:\Program Files\Microsoft SDKs\Windows\v7.1\Include;C:\Program Files\Microsoft SDKs\Windows\v7.1\Include\gl;

set PATH=C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\Tools;c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\BIN\amd64;c:\Program Files (x86)\Microsoft VisualStudio 10.0\VC\VCPackages;C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\x64;C:\Python27\;C:\Python27\Scripts;C:\Perl64\site\bin;C:\Perl64\bin;C:\Windows\system32;c:\Windows;C:\Windows\System32\Wbem;C:\WebKitBuildSlave\icu64\bin64;C:\Program Files\SlikSvn\bin;C:\Program Files (x86)\Git\bin;C:\Ruby193\bin;

This info base on how we build QtWebKit on Windows. Maybe there are some differences for other platforms.

Br,
- Zoltan

2013.08.21. 1:28 keltezéssel, Bear Travis írta:
Hi All,

I've been struggling a bit to get a WebKit build running on Windows, and figured I would ask for some help. I am working with a 64-bit version of Windows 7, and Visual Studio 10 Express. I've managed to get the code and successfully run update-webkit, but when I try to run build-webkit, I get the following error (abridged):

Cannot find 'cygdrive/c/Program Files/Microsoft Visual Studio 10.0/Common7/IDE/VCExpress.exe' Please execute the file 'vcvars32.bat' from 'C:\Program Files\Microsoft Visual Studio 8\VC\bin\' to setup the necessary environment variables
Died at /home/user/WebKit/Tools/Scripts/webkitdirs.pm line 1657

There isn't much under the Program Files/Microsoft Visual Studio 10.0 folder, but I have located VCExpress.exe under the Program Files (x86) directory. I have tried running the vcvars32.bat script from there, but continue to get the same error. This seems like I'm simply missing a variable set somewhere, but I'm not sure exactly which.

Thanks for your help,
-Bear


_______________________________________________
webkit-help mailing list
webkit-help@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-help

_______________________________________________
webkit-help mailing list
webkit-help@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-help

Reply via email to