2010-03-29 22:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* config/os2/gcc.mk
    + Readded OS/2 windres call in coff mode. Commented the whole 
      thing with NOTE. Seems like windres bug.
      I left gccomf branch active, maybe they fixed it in those 
      more recent versions.
This commit is contained in:
Viktor Szakats
2010-03-29 20:54:13 +00:00
parent a6153e5087
commit 7d3e6212d3
2 changed files with 16 additions and 2 deletions

View File

@@ -17,6 +17,13 @@
past entries belonging to author(s): Viktor Szakats.
*/
2010-03-29 22:53 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* config/os2/gcc.mk
+ Readded OS/2 windres call in coff mode. Commented the whole
thing with NOTE. Seems like windres bug.
I left gccomf branch active, maybe they fixed it in those
more recent versions.
2010-03-29 22:42 UTC+0200 Przemyslaw Czerpak (druzus/at/priv.onet.pl)
* harbour/include/hbthread.h
* harbour/src/vm/thread.c

View File

@@ -39,10 +39,17 @@ ifeq ($(HB_BUILD_DEBUG),yes)
CFLAGS += -g
endif
RC := $(HB_CCPATH)$(HB_CCPREFIX)windres
RC_OUT := -o$(subst x,x, )
ifeq ($(HB_COMPILER),gccomf)
RC := $(HB_CCPATH)$(HB_CCPREFIX)windres
RC_OUT := -o$(subst x,x, )
RCFLAGS := -O omf
else
# NOTE: This fails with error below in certain gcc versions, so I commented it for now:
# 'windres: can't get BFD_RELOC_RVA relocation type: No such file or directory'
#RC := $(HB_CCPATH)$(HB_CCPREFIX)windres
#RC_OUT := -o$(subst x,x, )
#RCFLAGS := -O coff
endif
ifneq ($(filter $(HB_BUILD_STRIP),all lib),)