From 99eea5d764c1059b7f62cbf69bf6796ac1088e78 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Hru=C5=A1ka?= Date: Sun, 18 Oct 2015 12:06:42 +0200 Subject: [PATCH] Fixed wrong build options resulting in bogus disassembly --- Makefile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Makefile b/Makefile index 0eb560e..c736b1a 100644 --- a/Makefile +++ b/Makefile @@ -15,11 +15,6 @@ ASOPTS = --cpu Cortex-M3 --apcs interwork # Add library to include path ASOPTS += -I$(lib_dir) -# Debug flags -ifeq ($(G), 1) - ASOPTS += -g -endif - ##################################################################################### # LINKER CONFIG @@ -29,11 +24,6 @@ LDOPTS = --cpu Cortex-M3 --strict LDOPTS += --ro-base 0x08000000 --entry 0x08000000 --rw-base 0x20000000 LDOPTS += --entry Reset_Handler --first __Vectors -# Debug flags -ifneq ($(G), 1) - LDOPTS += --no_debug -endif - # Verbose flags (run make V=1) ifeq ($(V), 1) LDOPTS += --summary_stderr --map --xref --callgraph --symbols