diff options
author | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-16 08:19:07 +0000 |
---|---|---|
committer | Patrick Georgi <patrick.georgi@coresystems.de> | 2009-09-16 08:19:07 +0000 |
commit | ab13458c34961cd709604c68059a9b209607e0b9 (patch) | |
tree | 27a69a275f07c9b1cbd7a2b3e46bbbd1b7b3cfcb /util/cbfstool/Makefile | |
parent | 057712a3b7450606fb88b10ce82c92885e3a913e (diff) |
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
Diffstat (limited to 'util/cbfstool/Makefile')
-rw-r--r-- | util/cbfstool/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/util/cbfstool/Makefile b/util/cbfstool/Makefile index 2170bec2d4..94712bdd6d 100644 --- a/util/cbfstool/Makefile +++ b/util/cbfstool/Makefile @@ -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 $@ |