2009-04-29 20:26 UTC+0200 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmk2/hbmk2.prg
    ! Refixed -map option for *nix non-darwin systems. Well, 
      at least for Linux.
This commit is contained in:
Viktor Szakats
2009-04-29 18:27:05 +00:00
parent e3473c5876
commit 74dc2abcef
2 changed files with 10 additions and 1 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to these authors: Viktor Szakats.
*/
2009-04-29 20:26 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Refixed -map option for *nix non-darwin systems. Well,
at least for Linux.
2009-04-29 19:44 UTC+0200 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
+ Added support for macros in -l options.

View File

@@ -1508,7 +1508,11 @@ FUNCTION hbmk( aArgs )
ENDIF
ENDIF
IF s_lMAP
AAdd( s_aOPTL, "-Wl,-map,{OM}" )
IF s_cARCH == "darwin"
AAdd( s_aOPTL, "-Wl,-map,{OM}" )
ELSE
AAdd( s_aOPTL, "-Wl,-Map,{OM}" )
ENDIF
ENDIF
IF s_lSTATICFULL
AAdd( s_aOPTL, "-static" )