diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-25 19:27:54 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-02-25 19:27:54 +0000 |
commit | 24b495c61968cc2162d36ed36991f5cd78d49f7b (patch) | |
tree | 475b6b9e8353a0af3646f450e190498ca8cfda06 | |
parent | 8b22b8e61f0de9eae46a9cedc6e2d0b02092ed4d (diff) | |
download | mtk-20170518-24b495c61968cc2162d36ed36991f5cd78d49f7b.zip mtk-20170518-24b495c61968cc2162d36ed36991f5cd78d49f7b.tar.gz mtk-20170518-24b495c61968cc2162d36ed36991f5cd78d49f7b.tar.bz2 |
add menuconfig item to enable uClibc debug builds
SVN-Revision: 19860
-rw-r--r-- | toolchain/uClibc/Config.in | 8 | ||||
-rw-r--r-- | toolchain/uClibc/Makefile | 4 |
2 files changed, 12 insertions, 0 deletions
diff --git a/toolchain/uClibc/Config.in b/toolchain/uClibc/Config.in index e7f016a..82e978a 100644 --- a/toolchain/uClibc/Config.in +++ b/toolchain/uClibc/Config.in @@ -18,3 +18,11 @@ choice depends BROKEN endchoice + + +# Debug version. + +config UCLIBC_ENABLE_DEBUG + bool "Build with debug information" + depends on TOOLCHAINOPTS && USE_UCLIBC + default n diff --git a/toolchain/uClibc/Makefile b/toolchain/uClibc/Makefile index f1e6fed..4ea15f1 100644 --- a/toolchain/uClibc/Makefile +++ b/toolchain/uClibc/Makefile @@ -97,6 +97,10 @@ UCLIBC_MAKE = PATH='$(TARGET_PATH)' $(MAKE) -C $(HOST_BUILD_DIR) \ LIBGCC="$(subst libgcc.a,libgcc_initial.a,$(shell $(TARGET_CC) -print-libgcc-file-name))" \ DOSTRIP="" +ifeq ($(CONFIG_UCLIBC_ENABLE_DEBUG),y) + UCLIBC_MAKE += DODEBUG=y +endif + define Host/Compile $(SED) 's,^CROSS=.*,CROSS=$(TARGET_CROSS),g' $(HOST_BUILD_DIR)/Rules.mak $(UCLIBC_MAKE) PREFIX= all |