projects
/
fairystockfish.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
(parent:
be5b32b
)
Use -O3 instead of -fast for Linux icc
author
Marco Costalba
<mcostalba@gmail.com>
Tue, 4 Jan 2011 10:09:35 +0000 (11:09 +0100)
committer
Marco Costalba
<mcostalba@gmail.com>
Tue, 4 Jan 2011 10:12:43 +0000 (11:12 +0100)
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>
src/Makefile
patch
|
blob
|
history
diff --git
a/src/Makefile
b/src/Makefile
index
c836fd4
..
ad36115
100644
(file)
--- a/
src/Makefile
+++ b/
src/Makefile
@@
-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