See ChangeLog entry 19991217-16:40 EDT David G. Holm <dholm@jsd-llc.com>

This commit is contained in:
David G. Holm
1999-12-17 21:49:15 +00:00
parent dae32cb24b
commit c7047f9696
2 changed files with 11 additions and 2 deletions

View File

@@ -1,3 +1,12 @@
19991217-16:40 EDT David G. Holm <dholm@jsd-llc.com>
* config/os2/icc.cf
+ I added the /NOIGNORECASE option to both the librarian and the linker,
because C++ can't tell the difference between 'int hb_pcount( void )'
and 'HARBOUR HB_PCOUNT( void )' unless a case-sensitive link is used.
This requires rebuilding all of Harbour if you are using OS/2 and the
IBM C++ compiler (i.e., make -r clean).
19991216-15:50 GMT+1 Bruno Cantero <bruno@issnet.net>
* include/extend.h
+ Added a new item type: IT_POINTER ( USHORT ) 0x0001

View File

@@ -17,7 +17,7 @@ CFLAGS = /Gs+ /W2 /Se /Sd+ /Ti+
LD = icc
LD_OUT = /Fe
LDFLAGS = /C-
LDFLAGS = /C- /B"/NOIgnoreCase"
ifeq ($(HB_MAIN),)
else
LDFLAGS += $(TOP)$(ROOT)source/vm/$(ARCH)/main.obj
@@ -37,7 +37,7 @@ endif
endif
AR = ilib
ARFLAGS = /NOE
ARFLAGS = /NOE /NOIgnoreCase
AROBJS = $(foreach file, $^, -+$(file))
AR_RULE = $(AR) $(ARFLAGS) $@ $(AROBJS),,