# HG changeset patch # User Paul Brossier # Date 1422712814 -3600 # Node ID 1912263ce9985a16d6356e258b5350860ab65f4e # Parent ed483706c93073f3bc60012c5192d922b7a16c34 Makefile.linux: add path to both amd64 and i686 binaries diff -r ed483706c930 -r 1912263ce998 Makefile.linux --- a/Makefile.linux Sat Jan 31 14:59:43 2015 +0100 +++ b/Makefile.linux Sat Jan 31 15:00:14 2015 +0100 @@ -15,10 +15,14 @@ # Location of Vamp plugin SDK relative to the project directory VAMPSDK_DIR := ../vamp-plugin-sdk-2.5 +# Location of libvamp-sdk.a +VAMPBIN_DIR_LINUX64 ?= ../vamp-plugin-sdk-2.5-binaries-amd64-linux +VAMPBIN_DIR_LINUX32 ?= ../vamp-plugin-sdk-2.5-binaries-i686-linux + # Libraries and linker flags required by plugin: add any -l # options here PLUGIN_LDFLAGS := -shared -Wl,-Bsymbolic -Wl,-z,defs -Wl,--version-script=vamp-plugin.map -PLUGIN_LIBS := $(VAMPSDK_DIR)/libvamp-sdk.a +PLUGIN_LIBS := -L$(VAMPBIN_DIR_LINUX32) -L$(VAMPBIN_DIR_LINUX64) -lvamp-sdk # File extension for plugin library on this platform PLUGIN_EXT := .so