Mercurial > hg > qm-vamp-plugins
annotate build/linux/Makefile.linux32 @ 266:d04675d44928 tip master
Refer to SDK from Github
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Wed, 02 Jun 2021 14:41:26 +0100 |
parents | 6e2e0755fe64 |
children |
rev | line source |
---|---|
c@159 | 1 |
cannam@262 | 2 CFLAGS := -DNDEBUG -O3 -fno-exceptions -fPIC -msse -mfpmath=sse -ftree-vectorize -fomit-frame-pointer -DUSE_PTHREADS |
c@159 | 3 |
c@159 | 4 CXXFLAGS := $(CFLAGS) |
c@159 | 5 |
cannam@262 | 6 LDFLAGS := -shared -Wl,--no-undefined -Wl,-Bstatic -lqm-dsp -Wl,-Bdynamic -lpthread -Wl,--version-script=vamp-plugin.map |
c@159 | 7 |
c@159 | 8 PLUGIN_EXT := .so |
c@159 | 9 |
c@160 | 10 MAKEFILE_EXT := .linux32 |
c@160 | 11 |
c@159 | 12 include build/general/Makefile.inc |
c@159 | 13 |