Add 'callgrind' target.

- Reactivate SIMD.
master
Fabien Freling 2014-07-24 22:40:02 +02:00
parent c704c14526
commit f8178fae98
1 changed files with 4 additions and 1 deletions

View File

@ -1,7 +1,7 @@
CXX = clang++
CXXFLAGS = -std=c++11 -W -Wall -O3 -ffast-math -g -Werror
LFLAGS = -flto
DEFINES = #-DSIMD
DEFINES = -DSIMD
BUILD_DIR = /tmp
SRC = rotation.cpp \
image.cpp \
@ -33,3 +33,6 @@ debug: all
cachegrind: all
valgrind --tool=cachegrind --dsymutil=yes $(BUILD_DIR)/rotation $(IMG)
callgrind: all
valgrind --tool=callgrind --dsymutil=yes $(BUILD_DIR)/rotation $(IMG)