diff options
author | John Crispin <john@openwrt.org> | 2008-06-10 07:18:41 +0000 |
---|---|---|
committer | John Crispin <john@openwrt.org> | 2008-06-10 07:18:41 +0000 |
commit | c9d9f8045c5aebdfeb96d7f9833927751d854bc1 (patch) | |
tree | 23ca4ef3aee50468acaf784ace88dfa0d2bf0fec | |
parent | 80e70b78fd12c0ace10bb0f505aa4c8593b8981c (diff) | |
download | mtk-20170518-c9d9f8045c5aebdfeb96d7f9833927751d854bc1.zip mtk-20170518-c9d9f8045c5aebdfeb96d7f9833927751d854bc1.tar.gz mtk-20170518-c9d9f8045c5aebdfeb96d7f9833927751d854bc1.tar.bz2 |
adds missing patch for native toolchain
SVN-Revision: 11425
-rw-r--r-- | Config.in | 4 | ||||
-rw-r--r-- | rules.mk | 14 |
2 files changed, 13 insertions, 5 deletions
@@ -142,6 +142,10 @@ 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" @@ -120,11 +120,15 @@ TARGET_CONFIGURE_OPTS:= \ SIZE=$(TARGET_CROSS)size # strip an entire directory -RSTRIP:= \ - NM="$(TARGET_CROSS)nm" \ - STRIP="$(STRIP)" \ - STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment" \ - $(SCRIPT_DIR)/rstrip.sh +ifneq ($(CONFIG_BUILD_DEVELOPER_SYSTEM),) + RSTRIP:=: +else + RSTRIP:= \ + NM="$(TARGET_CROSS)nm" \ + STRIP="$(STRIP)" \ + STRIP_KMOD="$(TARGET_CROSS)strip --strip-unneeded --remove-section=.comment" \ + $(SCRIPT_DIR)/rstrip.sh +endif ifeq ($(CONFIG_ENABLE_LOCALE),true) DISABLE_NLS:= |