mirror of
https://github.com/sockspls/badfish
synced 2025-04-29 16:23:09 +00:00
Use -O3 instead of -fast for Linux icc
Reported by Heinz and confirmed by Joona to increase the speed of 6% ! No change for icc on OSX Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
parent
be5b32bb9c
commit
07fcc8076d
1 changed files with 3 additions and 3 deletions
|
@ -278,10 +278,10 @@ ifeq ($(optimize),yes)
|
|||
endif
|
||||
|
||||
ifeq ($(comp),icc)
|
||||
CXXFLAGS += -fast
|
||||
|
||||
ifeq ($(os),osx)
|
||||
CXXFLAGS += -mdynamic-no-pic
|
||||
CXXFLAGS += -fast -mdynamic-no-pic
|
||||
else
|
||||
CXXFLAGS += -O3
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
|
Loading…
Add table
Reference in a new issue