1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-06-21 16:18:29 +02:00

add menuconfig item to enable uClibc debug builds

SVN-Revision: 19860
This commit is contained in:
Jo-Philipp Wich 2010-02-25 19:27:54 +00:00
parent 8b22b8e61f
commit 24b495c619
2 changed files with 12 additions and 0 deletions

View File

@ -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

View File

@ -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