mirror of
https://github.com/simh/simh.git
synced 2026-01-26 12:02:14 +00:00
makefile: don't use -fwhole-program
The GCC documentation explicitly says not to use that option when -flto is used, and since that is the only place where the makefile was using it, remove it to conform to the documented rules.
This commit is contained in:
committed by
Mark Pizzolato
parent
8d40c40d44
commit
f55193afa6
3
makefile
3
makefile
@@ -1358,9 +1358,6 @@ else
|
||||
ifneq (,$(LTO))
|
||||
ifneq (,$(findstring -flto,$(GCC_OPTIMIZERS)))
|
||||
CFLAGS_O += -flto
|
||||
ifneq (,$(and $(or $(findstring gcc,$(COMPILER_NAME)),$(findstring GCC,$(COMPILER_NAME))),$(findstring -fwhole-program,$(GCC_OPTIMIZERS))))
|
||||
CFLAGS_O += -fwhole-program
|
||||
endif
|
||||
LTO_FEATURE = , with Link Time Optimization,
|
||||
endif
|
||||
endif
|
||||
|
||||
Reference in New Issue
Block a user