From fd77449b84ee6cb76efd046fe9740bf74c1971d9 Mon Sep 17 00:00:00 2001 From: stevenj Date: Mon, 21 Jun 2010 11:18:09 -0400 Subject: [PATCH] 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 --- BUILD-MINGW.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ../.. -- 2.30.2