Fix examples/options Makefile to use -O3 for serial builds.

Amazingly, it has been using just -g since the initial commit. :-(
This commit is contained in:
Matt Pharr
2012-01-03 19:53:45 -08:00
parent 1d9201fe3d
commit 1a81173c93

View File

@@ -5,7 +5,7 @@ TASK_OBJ=$(addprefix objs/, $(subst ../,, $(TASK_CXX:.cpp=.o)))
CXX=g++ -m64
CXXFLAGS=-Iobjs/ -g -Wall
CXXFLAGS=-Iobjs/ -O3 -Wall
ISPC=ispc
ISPCFLAGS=-O2 --target=sse2,sse4-x2,avx-x2 --arch=x86-64