From: stevenj Date: Thu, 17 Jun 2010 04:26:35 +0000 (-0400) Subject: fixed mingw .def file X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=f0cc03d01e8965516f62db304592f5f3f1ed0f29;p=nlopt.git fixed mingw .def file darcs-hash:20100617042635-c8de0-5aee09684188626af74b04feb9187b729c51ea97.gz --- diff --git a/BUILD-MINGW.sh b/BUILD-MINGW.sh index ced6dc4..bab5030 100755 --- a/BUILD-MINGW.sh +++ b/BUILD-MINGW.sh @@ -10,7 +10,7 @@ for dll in *.dll; do def=`basename $dll .dll`.def echo "LIBRARY $dll" > $def echo EXPORTS >> $def - i586-mingw32msvc-nm $dll | grep ' T _' | sed 's/.* T _//' | grep nlopt >> $def + i586-mingw32msvc-nm $dll | grep ' T _' | sed 's/.* T _//' | egrep 'nlopt|nlo_' |cut -d@ -f1 >> $def done cd ../..