From: stevenj Date: Mon, 21 Jun 2010 15:18:09 +0000 (-0400) Subject: apparently the @ really is part of the identifier with stdcall functions...thanks... X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=fd77449b84ee6cb76efd046fe9740bf74c1971d9;p=nlopt.git apparently the @ really is part of the identifier with stdcall functions...thanks to Juergen Werner for the bug report darcs-hash:20100621151809-c8de0-c4dfb1306f75d675856067058479cb6f53a52e55.gz --- diff --git a/BUILD-MINGW.sh b/BUILD-MINGW.sh index bab5030..d0e2d8e 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 _//' | egrep 'nlopt|nlo_' |cut -d@ -f1 >> $def + i586-mingw32msvc-nm $dll | grep ' T _' | sed 's/.* T _//' | egrep 'nlopt|nlo_' >> $def done cd ../..