Mercurial > hg > vampy
comparison Makefile.mingw32 @ 65:0df94e3f0fdb
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 | 2fbb37d50be5 |
children | d8eaa10e153e |
comparison
equal
deleted
inserted
replaced
64:4ffac7dedddf | 65:0df94e3f0fdb |
---|---|
1 | 1 |
2 CXX := i586-mingw32msvc-g++ | 2 CXX := i586-mingw32msvc-g++ |
3 CXXFLAGS := -I../include -O2 -Wall -I../../Python26/include | 3 CXXFLAGS := -I../include -O2 -Wall -I../../Python26/include |
4 | 4 |
5 vampy.dll: PyPlugin.o PyPlugScanner.o vampy-main.o Mutex.o PyTypeInterface.o PyExtensionModule.o PyRealTime.o PyFeature.o PyParameterDescriptor.o PyOutputDescriptor.o PyFeatureSet.o PyExtensionManager.o | 5 vampy.dll: PyPlugin.o PyPlugScanner.o vampy-main.o Mutex.o PyTypeInterface.o PyExtensionModule.o PyRealTime.o PyFeature.o PyParameterDescriptor.o PyOutputDescriptor.o PyFeatureSet.o PyExtensionManager.o |
6 i586-mingw32msvc-g++ -shared $^ -o $@ -L../lib -L../../Python26/libs -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython26 -Wl,--version-script=vamp-plugin.map | 6 i586-mingw32msvc-g++ -shared $^ -o $@ -L../lib -L../../Python26/libs -Wl,-Bstatic -lvamp-sdk -Wl,-Bdynamic -lpython26 -Wl,--retain-symbols-file=vamp-plugin.list |
7 | 7 |
8 clean: | 8 clean: |
9 rm *.o | 9 rm *.o |
10 | 10 |