Update examples/ Makefiles to make x86-64 explicit in compiler flags

This commit is contained in:
Matt Pharr
2011-06-23 10:00:07 -07:00
parent 40bd133dec
commit e5bc6cd67c
7 changed files with 14 additions and 14 deletions

View File

@@ -11,10 +11,10 @@ endif
TASK_OBJ=$(addprefix objs/, $(TASK_CXX:.cpp=.o))
CXX=g++
CXX=g++ -m64
CXXFLAGS=-Iobjs/ -O3 -Wall
ISPC=ispc
ISPCFLAGS=-O2 --target=sse4x2
ISPCFLAGS=-O2 --target=sse4x2 --arch=x86-64
default: mandelbrot