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)
This commit is contained in:
Viktor Szakats
2010-04-11 11:00:41 +00:00
parent 6b97f3f4d5
commit e0da4285d2
2 changed files with 45 additions and 0 deletions

View File

@@ -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.

View File

@@ -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