mirror of
https://github.com/torvalds/linux.git
synced 2026-06-07 22:14:04 +02:00
kbuild: use -Oz instead of -Os when using clang
commit6748cb3c29upstream. This generates smaller resulting object code when compiled with clang. Signed-off-by: Behan Webster <behanw@converseincode.com> Signed-off-by: Matthias Kaehlcke <mka@chromium.org> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> [nc: Adjust context due to lack of commita76bcf557ein linux-4.4.y] Signed-off-by: Nathan Chancellor <natechancellor@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
045812536e
commit
c8250381e9
2
Makefile
2
Makefile
|
|
@ -628,7 +628,7 @@ KBUILD_CFLAGS += $(call cc-disable-warning, int-in-bool-context)
|
|||
KBUILD_CFLAGS += $(call cc-disable-warning, attribute-alias)
|
||||
|
||||
ifdef CONFIG_CC_OPTIMIZE_FOR_SIZE
|
||||
KBUILD_CFLAGS += -Os
|
||||
KBUILD_CFLAGS += $(call cc-option,-Oz,-Os)
|
||||
else
|
||||
ifdef CONFIG_PROFILE_ALL_BRANCHES
|
||||
KBUILD_CFLAGS += -O2
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user