2009-06-19 15:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* config/darwin/gcc.cf
    * Changed to use 'gcc' as compiler name like on other platforms 
      and in hbmk2.
      For old Darwin systems it may need to be redefined to 'cc' using 
      export HB_CMP=cc.
This commit is contained in:
Viktor Szakats
2009-06-19 13:03:45 +00:00
parent 2afa463b34
commit 8a01b5de4c
2 changed files with 10 additions and 3 deletions

View File

@@ -17,6 +17,13 @@
past entries belonging to author(s): Viktor Szakats.
*/
2009-06-19 15:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/darwin/gcc.cf
* Changed to use 'gcc' as compiler name like on other platforms
and in hbmk2.
For old Darwin systems it may need to be redefined to 'cc' using
export HB_CMP=cc.
2009-06-19 14:50 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
+ Added basic HB_CCPOSTFIX support.

View File

@@ -7,9 +7,9 @@ include $(TOP)$(ROOT)config/$(HB_ARCHITECTURE)/global.cf
ifeq ($(HB_COMPILER),gpp)
HB_CMP = g++
else
# intentionally used 'cc' instead of 'gcc' - I'm not an Darwin user
# but the system where I was testing it has GCC 2.95 named 'cc'
HB_CMP = cc
# for old Darwin systems (having GCC 2.95) this may need to be
# redefined to 'cc'.
HB_CMP = gcc
endif
OBJ_EXT = .o