- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The compilervats_arch.bat file only checks for the VSWinExpress.exe but it should check for any of the Visual Studio 2012 Express variants. The following change needs to happen to that file. All occurances of:
if exist "%VS110COMNTOOLS%..\IDE\VSWinExpress.exe" (
if exist "%VS110COMNTOOLS%..\..\VC\vcvarsall.bat" (
set MSVS_VAR_SCRIPT="%VS110COMNTOOLS%..\..\VC\vcvarsall.bat"
if /i "%TARGET_ARCH%"=="intel64" set TARGET_VS_ARCH=x86_amd64
goto Calls
)
)
Need to be replaced with:
if exist "%VS110COMNTOOLS%..\IDE\*Express.exe" (
if exist "%VS110COMNTOOLS%..\..\VC\vcvarsall.bat" (
set MSVS_VAR_SCRIPT="%VS110COMNTOOLS%..\..\VC\vcvarsall.bat"
if /i "%TARGET_ARCH%"=="intel64" set TARGET_VS_ARCH=x86_amd64
goto Calls
)
)
This is was found because Visual Studio 2012 for Desktop (that you can install on Windows 7) adds WDExpress.exe and that needs to be searched for.
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page