Code: Select all
# Link time optimizations
ifeq ($(USE_LTO),yes)
ifeq ($(shell test $$($(CC) -dumpversion | cut -d. -f1) -ge 10; echo $$?),0)
OPT += -flto=auto
else
OPT += -flto
endif
endif
Code: Select all
# Link time optimizations
ifeq ($(USE_LTO),yes)
ifeq ($(shell test $$($(CC) -dumpversion | cut -d. -f1) -ge 10; echo $$?),0)
OPT += -flto=auto
else
OPT += -flto
endif
endif
Return to “Development and Feedback”
Users browsing this forum: No registered users and 35 guests