annotate Makefile.linux @ 104:62b7be1226d5 openmp

OpenMP support in main EM iteration
author Chris Cannam
date Tue, 06 May 2014 16:28:04 +0100
parents e08c330a761d
children ac750e222ad3
rev   line source
Chris@31 1
Chris@104 2 CFLAGS := -Wall -O3 -ffast-math -fopenmp -msse -mfpmath=sse -ftree-vectorize -fPIC -I../vamp-plugin-sdk/
Chris@104 3
Chris@31 4 #CFLAGS := -g -fPIC -I../vamp-plugin-sdk
Chris@31 5
Chris@31 6 CXXFLAGS := $(CFLAGS)
Chris@31 7
Chris@31 8 VAMPSDK_DIR := ../vamp-plugin-sdk
Chris@104 9 PLUGIN_LDFLAGS := -lgomp -shared -Wl,--version-script=vamp-plugin.map
Chris@31 10
Chris@31 11 PLUGIN_EXT := .so
Chris@31 12
Chris@31 13 include Makefile.inc
Chris@31 14