Mail Archives: djgpp-workers/2001/06/08/04:19:27
This patch adds -fno-exceptions for C++ compiler options
(currently for emu387.cc only). C++ exceptions is not used there
and as result we can get smaller size of object code (and emu387.dxe)
Also with gcc-3.0 one should link with either libstd++ or libsupc++
when exceptions are being used
Andris
*** djgpp/src/makefile.inc~1 Sat Feb 10 07:00:44 2001
--- djgpp/src/makefile.inc Fri Jun 8 10:37:34 2001
***************
*** 70,77 ****
@$(MISC) echo - $(CROSS_GCC) '...' -c $<
@$(XGCC) -c $<
%.o : %.cc
! @$(MISC) echo - $(CROSS_GCC) '...' -c $<
! @$(XGCC) -c $<
%.o : %.S
@$(MISC) echo - $(CROSS_GCC) '...' -c $<
@$(XGCC) -c $<
--- 70,77 ----
@$(MISC) echo - $(CROSS_GCC) '...' -c $<
@$(XGCC) -c $<
%.o : %.cc
! @$(MISC) echo - $(CROSS_GCC) '...' -c -fno-exceptions $<
! @$(XGCC) -c -fno-exceptions $<
%.o : %.S
@$(MISC) echo - $(CROSS_GCC) '...' -c $<
@$(XGCC) -c $<
- Raw text -