Mercurial > hg > qm-vamp-plugins
annotate build/linux/Makefile.linux64 @ 160:9cc1f0be41dc
Add qm-dsp as subrepo
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Mon, 04 Aug 2014 16:25:23 +0100 |
parents | 6462f0981922 |
children | 15e901d613a5 |
rev | line source |
---|---|
c@136 | 1 |
c@159 | 2 CFLAGS := -DNDEBUG -O3 -fno-exceptions -fPIC -ffast-math -msse -msse2 -mfpmath=sse -ftree-vectorize -DUSE_PTHREADS |
c@136 | 3 |
c@136 | 4 CXXFLAGS := $(CFLAGS) |
c@136 | 5 |
c@159 | 6 LDFLAGS := -shared -Lbuild/linux/amd64 -Wl,-Bstatic -lqm-dsp -lvamp-sdk -L/usr/lib/sse2/atlas -L/usr/lib/atlas/sse -llapack -lcblas -lf77blas -latlas -Wl,-z,defs -Wl,-Bdynamic -lpthread -Wl,--version-script=vamp-plugin.map |
c@136 | 7 |
c@137 | 8 PLUGIN_EXT := .so |
c@137 | 9 |
c@160 | 10 MAKEFILE_EXT := .linux64 |
c@160 | 11 |
c@136 | 12 include build/general/Makefile.inc |
c@136 | 13 |