summaryrefslogtreecommitdiffstats
path: root/Config.in
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer2007-07-31 20:06:50 +0200
committerBernhard Reutner-Fischer2007-07-31 20:06:50 +0200
commitbbd251a07540477c37a48e92da3717e702255113 (patch)
tree1a8bb94b9d7630430201020a4ed8422dbb55c860 /Config.in
parent- lzma needs a CXX cross-compiler (diff)
downloadbuildroot-bbd251a07540477c37a48e92da3717e702255113.tar.gz
buildroot-bbd251a07540477c37a48e92da3717e702255113.tar.xz
buildroot-bbd251a07540477c37a48e92da3717e702255113.zip
- add possibility to select different flavours of strip (or none at all for debugging purposes)
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in27
1 files changed, 26 insertions, 1 deletions
diff --git a/Config.in b/Config.in
index cdc66663f..ca2159548 100644
--- a/Config.in
+++ b/Config.in
@@ -652,11 +652,36 @@ config BR2_DEPRECATED
This option hides outdated/obsolete versions of packages.
config BR2_USE_WCHAR
- bool "Show packages that are require WCHAR support"
+ bool "Show packages that require WCHAR support"
default y
help
This option hides packages which cannot be built without WCHAR.
+choice
+ prompt "strip"
+ default BR2_STRIP_strip
+ help
+ Select whether to strip binaries and libraries for the target
+ or not.
+ strip is the normal strip command
+ sstrip is a strip that discards more than the normal strip
+ none do not strip (only for debugging!)
+
+config BR2_STRIP_strip
+ bool "strip"
+ help
+ strip is the normal strip command
+config BR2_STRIP_sstrip
+ bool "sstrip"
+ select BR2_PACKAGE_SSTRIP_HOST
+ help
+ sstrip is a strip that discards more than the normal strip
+config BR2_STRIP_none
+ bool "none"
+ help
+ none do not strip (only for debugging!)
+endchoice
+
config BR2_PREFER_STATIC_LIB
bool "prefer static libraries"
default n