1
0
Fork 0

Link Time Optimization doesn't needs -static

Justin reports that it breaks the compilation on Fedore 15 and as Tom says:

-static is only needed to work around the gcc on ubuntu 11.10 beta bug.
If -static introduces issues on its own then it is better to remove it.
It will not be needed in most environments.

No functional change.

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
sf_2.3.1_base
Marco Costalba 2011-10-09 08:22:13 +01:00
parent fec623d68d
commit 8272dcb6cd
1 changed files with 1 additions and 1 deletions

View File

@ -315,7 +315,7 @@ ifeq ($(popcnt),yes)
### needs access to the optimization flags.
ifeq ($(comp),gcc)
CXXFLAGS += -msse3 -flto
LDFLAGS += $(CXXFLAGS) -static
LDFLAGS += $(CXXFLAGS)
endif
endif