blob: be5fb4c6243f06cbad370dce103d15acdbaaa700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
menu "Kernel hacking"
source "lib/Kconfig.debug"
config LD_NO_RELAX
bool "Disable linker relaxation"
default n
help
Enable this function to disable link-time optimizations.
The default linker behavior is to combine identical literal
values to reduce code size and remove unnecessary overhead from
assembler-generated 'longcall' sequences.
Enabling this option improves the link time but increases the
code size, and possibly execution time.
endmenu
|