2009-06-23 14:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbmk2/hbmk2.prg
    * Correction to xcc + /MT switch.
This commit is contained in:
Viktor Szakats
2009-06-23 12:10:37 +00:00
parent 16c5811ea0
commit 4e92dd7f79
2 changed files with 6 additions and 1 deletions

View File

@@ -17,6 +17,10 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-23 14:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
* Correction to xcc + /MT switch.
2009-06-23 13:33 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
* Synced /MT switch with GNU Make build switch for pocc/pocc64.

View File

@@ -2880,7 +2880,8 @@ FUNCTION hbmk( aArgs, /* @ */ lPause, /* @ */ lUTF8 )
ENDIF
cBin_Dyn := cBin_Link
cOpt_CompC := "/c /Ze"
IF !( hbmk[ _HBMK_cCOMP ] == "poccarm" )
IF !( hbmk[ _HBMK_cCOMP ] == "poccarm" ) .AND. ;
!( hbmk[ _HBMK_cCOMP ] == "xcc" ) /* xcc doesn't have this enabled in default Harbour builds. */
cOpt_CompC += " /MT"
ENDIF
IF !( hbmk[ _HBMK_cCOMP ] == "xcc" )