blob: 14099a08b8d7bb687ac75cab3348b4a940eda6aa (
plain)
1
2
3
4
5
6
7
8
|
# This option enables LTO for stage2 and stage3. It requires lto to
# be enabled for stage1 with --enable-stage1-languages.
STAGE2_CFLAGS += -flto
STAGE3_CFLAGS += -flto
# Ada fails to build with LTO, turn it off for now.
BOOT_ADAFLAGS += -fno-lto
|