summaryrefslogtreecommitdiffstats
path: root/Config.in
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2008-09-13 08:31:15 +0000
committerFelix Fietkau <nbd@openwrt.org>2008-09-13 08:31:15 +0000
commit373e5f5e8dec0e8eae528eee0fd64608af456c9e (patch)
treeaa9e24ab2efd4fbb3d3d3896bf92542ef0f50829 /Config.in
parent818729cfd2b4db32e76778820522812858b1d79f (diff)
downloadmaster-31e0f0ae-373e5f5e8dec0e8eae528eee0fd64608af456c9e.tar.gz
master-31e0f0ae-373e5f5e8dec0e8eae528eee0fd64608af456c9e.tar.bz2
master-31e0f0ae-373e5f5e8dec0e8eae528eee0fd64608af456c9e.zip
add new option for enabling debugging symbols
SVN-Revision: 12591
Diffstat (limited to 'Config.in')
-rw-r--r--Config.in16
1 files changed, 12 insertions, 4 deletions
diff --git a/Config.in b/Config.in
index b9716e8b2c..f1b72caa69 100644
--- a/Config.in
+++ b/Config.in
@@ -106,6 +106,18 @@ menuconfig BUILDOPTS
bool
prompt "Build Options" if DEVEL
+config DEBUG
+ bool
+ prompt "Enable debugging" if BUILDOPTS
+ select NO_STRIP
+ default n
+ help
+ Disables stripping and adds -g3 to the CFLAGS
+
+config NO_STRIP
+ bool "Do not strip generated binaries (enable for native compiling)" if DEVEL
+ default n
+
config CLEAN_IPKG
bool
prompt "Clean all ipkg files before building the rootfs" if BUILDOPTS
@@ -142,10 +154,6 @@ config EXTERNAL_KERNEL_TREE
prompt "Use external kernel tree" if DEVEL
default ""
-config BUILD_DEVELOPER_SYSTEM
- bool "build a non-stripped system, so gcc can be run natively on target" if DEVEL
- default n
-
source "toolchain/Config.in"
menuconfig BUILDSYSTEM_SETTINGS
bool "Buildsystem settings"