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

* utils/hbmk2/hbmk2.prg
    ! Fixed -map for msvc compilers.
      (regression since splitting compile/link phase)
This commit is contained in:
Viktor Szakats
2009-05-13 23:06:37 +00:00
parent 1b3799ce6b
commit 8d60dc359c
2 changed files with 8 additions and 2 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-05-14 01:05 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Fixed -map for msvc compilers.
(regression since splitting compile/link phase)
2009-05-14 00:23 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/contrib/rddads/ads1.c
! added workaround for ACE bug: character fields longer then 23 bytes are

View File

@@ -95,6 +95,7 @@
/* TODO: Further clean hbmk context var usage (hbmk2 scope, project scope,
adding rest of variables). */
/* TODO: Finish C++/C mode selection. */
/* TODO: Incremental .pot to .po merge. */
/* TODO: Add a way to fallback to stop if required headers couldn't be found.
This needs a way to spec what key headers to look for. */
@@ -2300,8 +2301,8 @@ FUNCTION hbmk( aArgs )
cLibPathPrefix := "/libpath:"
cLibPathSep := " "
IF hbmk[ _HBMK_lMAP ]
AAdd( hbmk[ _HBMK_aOPTC ], "-Fm" )
AAdd( hbmk[ _HBMK_aOPTD ], "-Fm" )
AAdd( hbmk[ _HBMK_aOPTL ], "/map" )
AAdd( hbmk[ _HBMK_aOPTD ], "/map" )
ENDIF
IF hbmk[ _HBMK_cCOMP ] == "msvcarm"
/* NOTE: Copied from .cf. Probably needs cleaning. */