diff options
| author | Andi Kleen <ak@linux.intel.com> | 2014-02-08 09:01:15 +0100 |
|---|---|---|
| committer | Moyster <oysterized@gmail.com> | 2018-11-29 18:33:33 +0100 |
| commit | fd4e4e231977df1a8a42e4136b54306f721bc26f (patch) | |
| tree | fc01346eb9099ab3b2dfb9fd30aeaa93882f4c37 /scripts | |
| parent | 5760ee443c9fb5bc36f48505e2a89ce9da0c5565 (diff) | |
Kbuild, lto: Disable LTO for asm-offsets.c
The asm-offset.c technique to fish data out of the assembler file
does not work with LTO. Just disable for the asm-offset.c build.
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Link: http://lkml.kernel.org/r/1391846481-31491-11-git-send-email-ak@linux.intel.com
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.build b/scripts/Makefile.build index 5cd6651b2..003bc2631 100644 --- a/scripts/Makefile.build +++ b/scripts/Makefile.build @@ -208,7 +208,7 @@ $(multi-objs-y:.o=.s) : modname = $(modname-multi) $(multi-objs-y:.o=.lst) : modname = $(modname-multi) quiet_cmd_cc_s_c = CC $(quiet_modtag) $@ -cmd_cc_s_c = $(CC) $(c_flags) -fverbose-asm -S -o $@ $< +cmd_cc_s_c = $(CC) $(c_flags) $(DISABLE_LTO) -fverbose-asm -S -o $@ $< $(obj)/%.s: $(src)/%.c FORCE $(call if_changed_dep,cc_s_c) |
