makefile: Disable link time optimization when building with clang.

Recent clang versions on OS X and Linux no longer buildingn with
-flto -fwhole-program
This commit is contained in:
Mark Pizzolato 2016-04-26 20:55:14 -07:00
parent c55b6a8a8b
commit faeff88ce5

View file

@ -892,6 +892,7 @@ else
NO_LTO = 1
endif
else
NO_LTO = 1
ifeq (Darwin,$(OSTYPE))
CFLAGS_O += -O4 -fno-strict-overflow -flto -fwhole-program
else