diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-08-12 15:09:18 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-09-03 14:52:17 -0400 |
commit | bdb8205455a31362fc72075583aedd63ff0c944b (patch) | |
tree | 4751e4b26f490d360d19679fed431620bc79173c | |
parent | 640710a33b54de8d90ae140ef633ed0feba76a75 (diff) |
tile: remove DEBUG_EXTRA_FLAGS kernel config option
It isn't used any more by us now that the generic kernel build
offers DEBUG_INFO_REDUCED, so just get rid of it.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
-rw-r--r-- | arch/tile/Kconfig.debug | 10 | ||||
-rw-r--r-- | arch/tile/Makefile | 4 |
2 files changed, 0 insertions, 14 deletions
diff --git a/arch/tile/Kconfig.debug b/arch/tile/Kconfig.debug index b8d69f2757a1..19734d3ab1e8 100644 --- a/arch/tile/Kconfig.debug +++ b/arch/tile/Kconfig.debug | |||
@@ -14,16 +14,6 @@ config EARLY_PRINTK | |||
14 | with klogd/syslogd. You should normally N here, | 14 | with klogd/syslogd. You should normally N here, |
15 | unless you want to debug such a crash. | 15 | unless you want to debug such a crash. |
16 | 16 | ||
17 | config DEBUG_EXTRA_FLAGS | ||
18 | string "Additional compiler arguments when building with '-g'" | ||
19 | depends on DEBUG_INFO | ||
20 | default "" | ||
21 | help | ||
22 | Debug info can be large, and flags like | ||
23 | `-femit-struct-debug-baseonly' can reduce the kernel file | ||
24 | size and build time noticeably. Such flags are often | ||
25 | helpful if the main use of debug info is line number info. | ||
26 | |||
27 | config TILE_HVGLUE_TRACE | 17 | config TILE_HVGLUE_TRACE |
28 | bool "Provide wrapper functions for hypervisor ABI calls" | 18 | bool "Provide wrapper functions for hypervisor ABI calls" |
29 | default n | 19 | default n |
diff --git a/arch/tile/Makefile b/arch/tile/Makefile index 3d15364c6071..4dc380a519d4 100644 --- a/arch/tile/Makefile +++ b/arch/tile/Makefile | |||
@@ -30,10 +30,6 @@ endif | |||
30 | # In kernel modules, this causes load failures due to unsupported relocations. | 30 | # In kernel modules, this causes load failures due to unsupported relocations. |
31 | KBUILD_CFLAGS += -fno-asynchronous-unwind-tables | 31 | KBUILD_CFLAGS += -fno-asynchronous-unwind-tables |
32 | 32 | ||
33 | ifneq ($(CONFIG_DEBUG_EXTRA_FLAGS),"") | ||
34 | KBUILD_CFLAGS += $(CONFIG_DEBUG_EXTRA_FLAGS) | ||
35 | endif | ||
36 | |||
37 | LIBGCC_PATH := \ | 33 | LIBGCC_PATH := \ |
38 | $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name) | 34 | $(shell $(CC) $(KBUILD_CFLAGS) $(KCFLAGS) -print-libgcc-file-name) |
39 | 35 | ||