2009-02-23 22:29 UTC+0100 Viktor Szakats (harbour.01 syenar hu)

* utils/hbmk2/hbmk2.prg
    + Added -map support for owatcom on all platforms.
This commit is contained in:
Viktor Szakats
2009-02-23 21:30:06 +00:00
parent c7888e9b42
commit 04099cecdc
2 changed files with 17 additions and 1 deletions

View File

@@ -8,6 +8,10 @@
2009-12-31 13:59 UTC+0100 Foo Bar (foo.bar foobar.org)
*/
2009-02-23 22:29 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
+ Added -map support for owatcom on all platforms.
2009-02-23 22:17 UTC+0100 Viktor Szakats (harbour.01 syenar hu)
* utils/hbmk2/hbmk2.prg
! Fixed bug in path normalization which stripped leading
@@ -262,7 +266,7 @@
; TODO: Add BCC support, if possible. [DONE]
; TODO: Rename hb-mkslib.sh to 8.3 name and sync
name with the .bat version (not necessarily
mkdll, but something short.)
mkdll, but something short.) [DONE]
* bin/hb-func.sh
! Added system libs for optional components included

View File

@@ -1136,6 +1136,9 @@ FUNCTION Main( ... )
IF s_lDEBUG
cOpt_Link := "DEBUG " + cOpt_Link
ENDIF
IF s_lMAP
AAdd( s_aOPTL, "OP MAP" )
ENDIF
CASE t_cARCH == "win" .AND. t_cCOMP == "owatcom"
cLibPrefix := "LIB "
@@ -1151,6 +1154,9 @@ FUNCTION Main( ... )
IF s_lDEBUG
cOpt_Link := "DEBUG " + cOpt_Link
ENDIF
IF s_lMAP
AAdd( s_aOPTL, "OP MAP" )
ENDIF
s_aLIBSYS := ArrayJoin( s_aLIBSYS, { "kernel32", "user32", "wsock32" } )
IF Len( s_aRESSRC ) > 0
@@ -1212,6 +1218,9 @@ FUNCTION Main( ... )
IF s_lDEBUG
cOpt_Link := "DEBUG " + cOpt_Link
ENDIF
IF s_lMAP
AAdd( s_aOPTL, "OP MAP" )
ENDIF
CASE t_cCOMP == "icc"
cLibPrefix := NIL
@@ -1245,6 +1254,9 @@ FUNCTION Main( ... )
IF s_lDEBUG
cOpt_Link := "DEBUG " + cOpt_Link
ENDIF
IF s_lMAP
AAdd( s_aOPTL, "OP MAP" )
ENDIF
/* Misc */
CASE t_cARCH == "win" .AND. t_cCOMP == "bcc32"