Build cbfstool with debug flags and don't strip the executable

from any symbol information.

Variant of Ron's patch.

Signed-off-by: Patrick Georgi <patrick.georgi@coresystems.de>
Acked-by: Patrick Georgi <patrick.georgi@coresystems.de>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4637 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Patrick Georgi 2009-09-16 08:19:07 +00:00
parent 057712a3b7
commit ab13458c34
2 changed files with 4 additions and 5 deletions

View File

@ -42,10 +42,9 @@ clean:
tags:
ctags *.[ch]
CXXFLAGS=-DCOMPACT
CFLAGS=
LDFLAGS=
CXXFLAGS=-DCOMPACT -g
CFLAGS=-g
LDFLAGS=-g
$(obj)/cbfstool:$(COMMON)
$(HOSTCXX) $(LDFLAGS) -o $@ $^
strip $@

View File

@ -16,7 +16,7 @@ cbfsobj += cbfs-mkstage.o
cbfsobj += cbfs-mkpayload.o
cbfsobj += cbfstool.o
CBFSTOOLFLAGS=-DCOMPACT
CBFSTOOLFLAGS=-DCOMPACT -g
$(obj)/util/cbfstool:
mkdir -p $@