annotate Makefile.linux @ 116:91bb029a847a timing

Reorder the calculations to match the series of vector operations in the most recent bqvec code, just in case it's the order of vector calculations that is saving the time rather than the avoidance of std::vector
author Chris Cannam
date Wed, 07 May 2014 09:57:19 +0100
parents e08c330a761d
children 2b0818a1c058 62b7be1226d5
rev   line source
Chris@31 1
Chris@33 2 CFLAGS := -Wall -O3 -ffast-math -msse -mfpmath=sse -ftree-vectorize -fPIC -I../vamp-plugin-sdk/
Chris@31 3 #CFLAGS := -g -fPIC -I../vamp-plugin-sdk
Chris@31 4
Chris@31 5 CXXFLAGS := $(CFLAGS)
Chris@31 6
Chris@31 7 VAMPSDK_DIR := ../vamp-plugin-sdk
Chris@31 8 PLUGIN_LDFLAGS := -shared -Wl,--version-script=vamp-plugin.map
Chris@31 9
Chris@31 10 PLUGIN_EXT := .so
Chris@31 11
Chris@31 12 include Makefile.inc
Chris@31 13