diff options
Diffstat (limited to 'arch/xtensa/Kconfig.debug')
-rw-r--r-- | arch/xtensa/Kconfig.debug | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/arch/xtensa/Kconfig.debug b/arch/xtensa/Kconfig.debug index 11c585295dd7..be5fb4c6243f 100644 --- a/arch/xtensa/Kconfig.debug +++ b/arch/xtensa/Kconfig.debug | |||
@@ -2,6 +2,15 @@ menu "Kernel hacking" | |||
2 | 2 | ||
3 | source "lib/Kconfig.debug" | 3 | source "lib/Kconfig.debug" |
4 | 4 | ||
5 | endmenu | 5 | config LD_NO_RELAX |
6 | 6 | bool "Disable linker relaxation" | |
7 | default n | ||
8 | help | ||
9 | Enable this function to disable link-time optimizations. | ||
10 | The default linker behavior is to combine identical literal | ||
11 | values to reduce code size and remove unnecessary overhead from | ||
12 | assembler-generated 'longcall' sequences. | ||
13 | Enabling this option improves the link time but increases the | ||
14 | code size, and possibly execution time. | ||
7 | 15 | ||
16 | endmenu | ||