diff options
author | Eric Andersen <andersen@codepoet.org> | 2006-07-04 22:23:01 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2006-07-04 22:23:01 +0000 |
commit | 66b01e60d8d3b28bbaf226f2cb27c459d5fe09c0 (patch) | |
tree | 9a88808d08713eeebb4fa32a7032ff022a400eff /extra/Configs | |
parent | 712f14a84f8d506ef238c94a96bd98a7e561b153 (diff) |
Change symbol 'NOSTRIP' to 'DOSTRIP' since the double negatives
on i.e. NOSTRIP=n gets a bit confusing.
Diffstat (limited to 'extra/Configs')
-rw-r--r-- | extra/Configs/Config.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index fd3b03219..96f77fa5e 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -1407,7 +1407,6 @@ config CROSS_COMPILER_PREFIX config DODEBUG bool "Build uClibc with debugging symbols" default n - select NOSTRIP select EXTRA_WARNINGS help Say Y here if you wish to compile uClibc with debugging symbols. @@ -1428,14 +1427,15 @@ config DODEBUG_PT Otherwise, answer N. -config NOSTRIP - bool "Do not strip libraries and executables" - default n +config DOSTRIP + bool "Strip libraries and executables" + default y + depends on !DODEBUG help - Say Y here if you do not wish to strip all uClibc libraries and - executables. This increases the size of the binaries considerably, - but makes it possible to directly debug uClibc libraries. - Most people will answer N. + Say Y here if you do wish to strip all uClibc libraries and + executables. No stripping increases the size of the binaries + considerably, but makes it possible to debug uClibc libraries. + Most people will answer Y. config DOASSERTS bool "Build uClibc with run-time assertion testing" |