diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 32cf0e5861..1ec3e62d46 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -17,6 +17,11 @@ past entries belonging to author(s): Viktor Szakats. */ +2010-04-11 13:00 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * INSTALL + + Added (untested) examples for upcoming Windows SDK 7.1 and MSVS 2010. + (to be released tomorrow) + 2010-04-11 09:31 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * INSTALL * HB_COMPILER_VER explanation made hopefully more clear. diff --git a/harbour/INSTALL b/harbour/INSTALL index e427dcbf0f..7814b76b2e 100644 --- a/harbour/INSTALL +++ b/harbour/INSTALL @@ -737,6 +737,16 @@ HARBOUR - To redirect all output to a log file, append this after the make command: '> log.txt 2>&1' (without quotes) + --- Windows SDK 7.1 + call "%ProgramFiles%\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat" + win-make + --- + + --- Windows SDK 7.1 for Windows x86-64 (requires preceding build for native target) + call "%ProgramFiles%\Microsoft Visual Studio 10.0\VC\bin\vcvarsx86_amd64.bat" + win-make + --- + --- Windows SDK 7 call "%ProgramFiles%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" win-make @@ -747,6 +757,11 @@ HARBOUR win-make --- + --- MSVC 2010 + call "%ProgramFiles%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" + win-make + --- + --- MSVC 2008 + SDK set WindowsSDKDir=%ProgramFiles%\Microsoft SDKs\Windows\v6.0A\ call "%ProgramFiles%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" @@ -758,6 +773,11 @@ HARBOUR win-make --- + --- MSVC 2010 (Professional or above) for Windows x86-64 (requires preceding build for native target) + call "%ProgramFiles%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" x86_amd64 + win-make + --- + --- MSVC 2008 (Standard or above) for Windows x86-64 (requires preceding build for native target) call "%ProgramFiles%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" x86_amd64 win-make @@ -921,6 +941,16 @@ HARBOUR both x86 and x64 without building a native target first, and potential differences in compilers to use native binaries if they are available. + --- Windows SDK 7.1 for Windows x86 + call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\bin\vcvars32.bat" + win-make + --- + + --- Windows SDK 7.1 for Windows x86-64 + call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\bin\vcvars64.bat" + win-make + --- + --- Windows SDK 7 for Windows x86 call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\bin\vcvars32.bat" win-make @@ -931,11 +961,21 @@ HARBOUR win-make --- + --- MSVC 2010 for Windows x86 + call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" + win-make + --- + --- MSVC 2008 for Windows x86 call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" win-make --- + --- MSVC 2010 (Professional or above) for Windows x86-64 + call "%ProgramFiles(x86)%\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" amd64 + win-make + --- + --- MSVC 2008 (Standard or above) for Windows x86-64 call "%ProgramFiles(x86)%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat" amd64 win-make