view 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
line wrap: on
line source

CFLAGS := -Wall -O3 -ffast-math -msse -mfpmath=sse -ftree-vectorize -fPIC -I../vamp-plugin-sdk/
#CFLAGS := -g -fPIC -I../vamp-plugin-sdk

CXXFLAGS := $(CFLAGS)

VAMPSDK_DIR := ../vamp-plugin-sdk
PLUGIN_LDFLAGS := -shared -Wl,--version-script=vamp-plugin.map

PLUGIN_EXT := .so

include Makefile.inc