From 2a97045d5daeb7cb7222f1ffe0532930d5b3140d Mon Sep 17 00:00:00 2001 From: Thomas De Schampheleire Date: Thu, 21 Jun 2012 19:34:50 +0000 Subject: build: add option to exclude executables/dirs from being stripped Sometimes it may be desirable to keep debug symbols for some binaries and libraries on the target. This commit introduces the config option BR2_STRIP_EXCLUDE_FILES, which is interpreted as a list of such binaries and libraries, and the option BR2_STRIP_EXCLUDE_DIRS, which indicates directories excluded from stripping entirely. These exclusions are passed to the find command in the target-finalize step. Signed-off-by: Sven Neumann Signed-off-by: Thomas De Schampheleire Acked-by: Arnout Vandecappelle (Essensium/Mind) Signed-off-by: Peter Korsgaard --- Config.in | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'Config.in') diff --git a/Config.in b/Config.in index 95c2e8ca3..83f64bb67 100644 --- a/Config.in +++ b/Config.in @@ -283,6 +283,25 @@ config BR2_STRIP_none filesystem. endchoice +config BR2_STRIP_EXCLUDE_FILES + string "executables that should not be stripped" + depends on !BR2_STRIP_none + default "" + help + You may specify a space-separated list of binaries and libraries + here that should not be stripped on the target. + +config BR2_STRIP_EXCLUDE_DIRS + string "directories that should be skipped when stripping" + depends on !BR2_STRIP_none + default "" + help + You may specify a space-separated list of directories that should + be skipped when stripping. Binaries and libraries in these + directories will not be touched. + The directories should be specified relative to the target directory, + without leading slash. + choice prompt "gcc optimization level" default BR2_OPTIMIZE_S -- cgit v1.2.3