From e46c1e59820adb42ed7ea1bbf9edcf82884d0acd Mon Sep 17 00:00:00 2001 From: Stas Degteff Date: Sat, 29 Oct 2005 09:16:58 +0000 Subject: [PATCH] change DJGPP compiler flags to GCC v 3.x & 4.x --- GNUmakef.def | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/GNUmakef.def b/GNUmakef.def index 1e12302..05be412 100644 --- a/GNUmakef.def +++ b/GNUmakef.def @@ -118,8 +118,14 @@ endif # force not to use coprocessor features in DOS, if you have one you may remove this ifeq ($(PLATFORM),djg) -CFLAGS+=-mcpu=i386 -STDLIBS+=-llocal -lwmemu +#CFLAGS+=-mcpu=i386 # GCC v2.x.x +CFLAGS+=-march=i386 #-mtune=i686 # GCC v3.x.x +STDLIBS+=-llocal +endif + +# force not to use coprocessor features in DOS, if you have one you may remove this +ifeq ($(PLATFORM),djg) +STDLIBS+=# -lwmemu endif BIN=bin