From: John Hodge Date: Thu, 4 Oct 2012 06:21:02 +0000 (+0800) Subject: AcessNative - Disable optimisations to aid debug X-Git-Tag: rel0.15~701 X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=28e517c4d6b0f4099e0f11ba8946a2efeb1a2e5b;p=tpg%2Facess2.git AcessNative - Disable optimisations to aid debug --- diff --git a/AcessNative/ld-acess_src/Makefile b/AcessNative/ld-acess_src/Makefile index 419e47db..77cd2d17 100644 --- a/AcessNative/ld-acess_src/Makefile +++ b/AcessNative/ld-acess_src/Makefile @@ -20,9 +20,10 @@ endif CFLAGS += -Wall CFLAGS += -Werror -CFLAGS += -g -O2 +CFLAGS += -g CPPFLAGS += -DARCHDIR_is_x86_64=1 -LDFLAGS += -g -Wl,-T,obj-$(PLATFORM)/link.ld +LDFLAGS += -g +# -Wl,-T,obj-$(PLATFORM)/link.ld DEPFILES = $(filter %.o,$(OBJ)) DEPFILES := $(DEPFILES:%=%.dep)