annotate Makefile.linux64 @ 80:00cffb79d0e0

Looks like --retain-symbols-file=<file>.list is the PE equivalent of the ELF version script for our purposes
author Chris Cannam
date Wed, 06 Aug 2014 16:02:25 +0100
parents 564f80bc0da4
children 7ef7f6e90966
rev   line source
matthiasm@0 1
Chris@79 2 CFLAGS := $(CFLAGS) -Wall -O3 -fPIC -I../vamp-plugin-sdk/
Chris@3 3 #CFLAGS := -g -fPIC -I../vamp-plugin-sdk
Chris@3 4
Chris@79 5 CXXFLAGS := $(CXXFLAGS) $(CFLAGS)
matthiasm@0 6
Chris@79 7 PLUGIN_LDFLAGS := $(LDFLAGS) -shared -Wl,-Bstatic -L../vamp-plugin-sdk -lvamp-sdk -Wl,-Bdynamic -Wl,--version-script=vamp-plugin.map
Chris@79 8 TEST_LDFLAGS := $(LDFLAGS) -Wl,-Bstatic -L../vamp-plugin-sdk -lvamp-sdk -Wl,-Bdynamic -lboost_unit_test_framework
matthiasm@0 9
matthiasm@0 10 PLUGIN_EXT := .so
matthiasm@0 11
matthiasm@0 12 include Makefile.inc
matthiasm@0 13