Mercurial > hg > qm-vamp-plugins
annotate build/linux/Makefile.linux64 @ 181:0243d1e2c82f
qm-dsp URL
author | Chris Cannam <c.cannam@qmul.ac.uk> |
---|---|
date | Wed, 10 Feb 2016 21:50:35 +0000 |
parents | f96ea0e4b475 |
children | 12daefe5e6f1 |
rev | line source |
---|---|
c@136 | 1 |
c@178 | 2 #CFLAGS += -DNDEBUG -O3 -fno-exceptions -fPIC -ffast-math -msse -msse2 -mfpmath=sse -ftree-vectorize -DUSE_PTHREADS |
c@178 | 3 CFLAGS += -DDEBUG -g -fno-exceptions -Wall -Wextra -Werror -fPIC -ffast-math -DUSE_PTHREADS |
c@136 | 4 |
c@166 | 5 CXXFLAGS += $(CFLAGS) |
c@136 | 6 |
c@166 | 7 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 | 8 |
c@137 | 9 PLUGIN_EXT := .so |
c@137 | 10 |
c@160 | 11 MAKEFILE_EXT := .linux64 |
c@160 | 12 |
c@136 | 13 include build/general/Makefile.inc |
c@136 | 14 |