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:
parent
c55b6a8a8b
commit
faeff88ce5
1 changed files with 1 additions and 0 deletions
1
makefile
1
makefile
|
@ -892,6 +892,7 @@ else
|
||||||
NO_LTO = 1
|
NO_LTO = 1
|
||||||
endif
|
endif
|
||||||
else
|
else
|
||||||
|
NO_LTO = 1
|
||||||
ifeq (Darwin,$(OSTYPE))
|
ifeq (Darwin,$(OSTYPE))
|
||||||
CFLAGS_O += -O4 -fno-strict-overflow -flto -fwhole-program
|
CFLAGS_O += -O4 -fno-strict-overflow -flto -fwhole-program
|
||||||
else
|
else
|
||||||
|
|
Loading…
Add table
Reference in a new issue