1
0
Fork 0
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:
Marco Costalba 2011-01-04 11:09:35 +01:00
parent be5b32bb9c
commit 07fcc8076d

View file

@ -278,10 +278,10 @@ ifeq ($(optimize),yes)
endif endif
ifeq ($(comp),icc) ifeq ($(comp),icc)
CXXFLAGS += -fast
ifeq ($(os),osx) ifeq ($(os),osx)
CXXFLAGS += -mdynamic-no-pic CXXFLAGS += -fast -mdynamic-no-pic
else
CXXFLAGS += -O3
endif endif
endif endif
endif endif