2009-11-21 18:13 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbmk2/hbmk2.prg
    + Added clang support to link to dylib with full dirspec 
      (when Harbour is not used/installed in a system location)
This commit is contained in:
Viktor Szakats
2009-11-21 17:15:56 +00:00
parent 5ce8094223
commit c8af764db8
2 changed files with 7 additions and 2 deletions

View File

@@ -17,6 +17,11 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-11-21 18:13 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
+ Added clang support to link to dylib with full dirspec
(when Harbour is not used/installed in a system location)
2009-11-21 12:38 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
! Fixed to make clang behave like gcc when decorating lib references.

View File

@@ -2077,10 +2077,10 @@ FUNCTION hbmk( aArgs, /* @ */ lPause )
DEFAULT hbmk[ _HBMK_lSHAREDDIST ] TO lSysLoc
IF hbmk[ _HBMK_lSHAREDDIST ] .OR. !( hbmk[ _HBMK_cCOMP ] == "gcc" )
IF hbmk[ _HBMK_lSHAREDDIST ] .OR. !( hbmk[ _HBMK_cCOMP ] $ "gcc|clang" )
cPrefix := ""
ELSE
/* Only supported by gcc compilers. */
/* Only supported by gcc, clang compilers. */
cPrefix := DirAddPathSep( l_cHB_DYN_INSTALL )
ENDIF
#if 1