See ChangeLog entry 19991217-16:40 EDT David G. Holm <dholm@jsd-llc.com>
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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),,
|
||||
|
||||
|
||||
Reference in New Issue
Block a user