Re: EuBins - Windows builds updated r1182
- Posted by bernie Sep 23, 2008
- 979 views
DerekParnell said...
bernie said...
jeremy said...
I am not sure. Where is the go32.h include coming from, anyone know? I do not have a go32.h
Jeremy
It's coming from the compiler thinking the DOS compile is using DJGPP instead of WATCOM.
By any chance does your makefile.wat file contain ...
BE_FLAGS = /ol /d$(OSFLAG) /dEWATCOM /dEOW $(%ERUNTIME) $(%EBACKEND) $(MEMFLAG) $(DEBUGFLAG)or is it more like ...
BE_FLAGS = /ol /d$(OSFLAG) /dEDJGPP /dEOW $(%ERUNTIME) $(%EBACKEND) $(MEMFLAG) $(DEBUGFLAG)If it has /dEDJGPP then it is going to want to use the DJGPP compiler and thus try to use go32.h.
Also, make sure that the file "global.e" has the lines ...
global constant EWATCOM = TRUE, EBORLAND = FALSE, ELCC = FALSE, EDJGPP = FALSE
In other words, make sure that EDJGPP is false and EWATCOM is true.
I'am using a checkout of SVN 1182 and those settings are correct.