Ver Fonte

remove support for DEBUG_DIR, it has lost its purpose since STAGING_DIR_ROOT was added

SVN-Revision: 19849
Felix Fietkau há 15 anos atrás
pai
commit
15fecc9e6c
4 ficheiros alterados com 1 adições e 36 exclusões
  1. 0 7
      Config.in
  2. 0 26
      include/package-debug.mk
  3. 1 2
      include/package.mk
  4. 0 1
      rules.mk

+ 0 - 7
Config.in

@@ -206,13 +206,6 @@ config DEBUG
 	help
 		Adds -g3 to the CFLAGS
 
-config DEBUG_DIR
-	bool "Install debugging binaries into a staging directory"
-	default n
-	help
-		This will install all compiled package binaries into build_dir/target-*/debug-*/,
-		useful for cross-debugging via gdb/gdbserver
-
 config IPV6
         bool
         prompt "Enable IPv6 support in packages"

+ 0 - 26
include/package-debug.mk

@@ -1,26 +0,0 @@
-# 
-# Copyright (C) 2006,2007 OpenWrt.org
-#
-# This is free software, licensed under the GNU General Public License v2.
-# See /LICENSE for more information.
-#
-
-ifeq ($(DUMP),)
-  define BuildTarget/debug
-
-    DEBUG_STAMP_$(1) := $(DEBUG_DIR)/stamp/$(1)
-
-    ifdef Package/$(1)/install
-      ifneq ($(CONFIG_PACKAGE_$(1))$(SDK)$(DEVELOPER),)
-        compile: $$(DEBUG_STAMP_$(1))
-      endif
-    endif
-
-    $$(DEBUG_STAMP_$(1)): $(PKG_BUILD_DIR)/.built
-		mkdir -p $(DEBUG_DIR)/stamp
-		$(call Package/$(1)/install,$(DEBUG_DIR))
-		touch $$(DEBUG_STAMP_$(1))
-
-
-  endef
-endif

+ 1 - 2
include/package.mk

@@ -26,7 +26,6 @@ include $(INCLUDE_DIR)/quilt.mk
 include $(INCLUDE_DIR)/package-defaults.mk
 include $(INCLUDE_DIR)/package-dumpinfo.mk
 include $(INCLUDE_DIR)/package-ipkg.mk
-include $(INCLUDE_DIR)/package-debug.mk
 include $(INCLUDE_DIR)/package-bin.mk
 include $(INCLUDE_DIR)/autotools.mk
 
@@ -179,7 +178,7 @@ endif
     $(Dumpinfo/Package), \
     $(foreach target, \
       $(if $(Package/$(1)/targets),$(Package/$(1)/targets), \
-        $(if $(PKG_TARGETS),$(PKG_TARGETS), ipkg $(if $(CONFIG_DEBUG_DIR),debug)) \
+        $(if $(PKG_TARGETS),$(PKG_TARGETS), ipkg) \
       ), $(BuildTarget/$(target)) \
     ) \
   )

+ 0 - 1
rules.mk

@@ -80,7 +80,6 @@ STAMP_DIR_HOST=$(BUILD_DIR_HOST)/stamp
 TARGET_ROOTFS_DIR?=$(if $(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(call qstrip,$(CONFIG_TARGET_ROOTFS_DIR)),$(BUILD_DIR))
 TARGET_DIR:=$(TARGET_ROOTFS_DIR)/root-$(BOARD)
 STAGING_DIR_ROOT:=$(STAGING_DIR)/root-$(BOARD)
-DEBUG_DIR:=$(BUILD_DIR)/debug-$(BOARD)
 BUILD_LOG_DIR:=$(TOPDIR)/logs
 
 TARGET_PATH:=$(STAGING_DIR_HOST)/bin:$(PATH)