1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-18 22:05:17 +03:00

Changed back to using -Ofast optimisation

This commit is contained in:
Martin Budden 2017-01-25 18:49:32 +00:00 committed by borisbstyle
parent c1e84c1bfd
commit ae9fc8a58d

View file

@ -934,7 +934,7 @@ LTO_FLAGS := $(OPTIMISATION_BASE) $(OPTIMISE_DEFAULT)
else ifeq ($(TARGET),$(filter $(TARGET),$(F3_TARGETS)))
OPTIMISE_DEFAULT := -O2
OPTIMISE_SPEED := -O3
OPTIMISE_SPEED := -Ofast
OPTIMISE_SIZE := -Os
LTO_FLAGS := $(OPTIMISATION_BASE) $(OPTIMISE_SPEED)