2009-06-08 13:00 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* make_gnu.bat
  * INSTALL
    + Automatically filling HB_CCPREFIX for mingw64 and mingwce
      targets, if not specified by user.
    * Removed HB_CCPREFIX from examples. Not yet documented 
      the override feature as it's currently not needed.
This commit is contained in:
Viktor Szakats
2009-06-08 11:00:38 +00:00
parent b29b97c6bb
commit 453096a19c
3 changed files with 11 additions and 2 deletions

View File

@@ -17,6 +17,14 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-08 13:00 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* make_gnu.bat
* INSTALL
+ Automatically filling HB_CCPREFIX for mingw64 and mingwce
targets, if not specified by user.
* Removed HB_CCPREFIX from examples. Not yet documented
the override feature as it's currently not needed.
2009-06-08 11:59 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* mpkg_win.bat
* mpkg_win.nsi

View File

@@ -388,7 +388,6 @@ EXAMPLES
--- MinGW GCC for x86-64 (requires native x86 Harbour binaries)
set PATH=C:\devl\MinGW-440-64\bin;%PATH%
set HB_CCPREFIX=x86_64-pc-mingw32-
rem
set HB_COMPILER=mingw64
rem
@@ -401,7 +400,6 @@ EXAMPLES
--- MinGW GCC for WinCE/ARM (requires native x86 Harbour binaries)
set PATH=C:\devl\MinGW-410-ce\opt\mingw32ce\bin;%PATH%
set HB_CCPREFIX=arm-wince-mingw32ce-
rem
set HB_ARCHITECTURE=wce
set HB_COMPILER=mingwarm

View File

@@ -94,6 +94,9 @@ if not exist %HB_DOC_INSTALL%\*.* md %HB_DOC_INSTALL%
if "%HB_ARCHITECTURE%" == "dos" goto SKIP_WINDLL
if "%HB_COMPILER%%HB_CCPREFIX%" == "mingw64" set HB_CCPREFIX=x86_64-pc-mingw32-
if "%HB_COMPILER%%HB_CCPREFIX%" == "mingwarm" set HB_CCPREFIX=arm-wince-mingw32ce-
if not exist config\mingw32-make.exe goto _FM_NOLOCAL
set _HB_MAKE=config\mingw32-make.exe
goto _FM_DONE