diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-02-07 00:49:10 -0500 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-02-07 08:50:31 +0100 |
commit | febe322d273e1f9538aa124861badc0df2e52742 (patch) | |
tree | 6b0ded9e524d8600a94403126f67c0a3b945151a | |
parent | 9f31e2ffa005095206824e08f69da75503e998ab (diff) | |
download | buildroot-novena-febe322d273e1f9538aa124861badc0df2e52742.tar.gz buildroot-novena-febe322d273e1f9538aa124861badc0df2e52742.zip |
debugging: do not require no stripping
The stripping options operate on the final image and not the intermediate
builds, so requiring stripping to be disabled just to enable debugging
options doesn't make much sense. Especially when working with gdbserver:
only the host needs the debugging information to be available. The board
can run & debug perfectly fine without it.
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | Config.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -219,14 +219,14 @@ choice config BR2_STRIP_strip bool "strip" - depends on !BR2_ENABLE_DEBUG && !BR2_ELF2FLT + depends on !BR2_ELF2FLT help strip is the normal strip command config BR2_STRIP_sstrip bool "sstrip" select BR2_PACKAGE_SSTRIP_HOST - depends on !BR2_ENABLE_DEBUG && !BR2_ELF2FLT + depends on !BR2_ELF2FLT help sstrip is a strip that discards more than the normal strip |