chiark / gitweb /
apparently the @ really is part of the identifier with stdcall functions...thanks...
authorstevenj <stevenj@alum.mit.edu>
Mon, 21 Jun 2010 15:18:09 +0000 (11:18 -0400)
committerstevenj <stevenj@alum.mit.edu>
Mon, 21 Jun 2010 15:18:09 +0000 (11:18 -0400)
darcs-hash:20100621151809-c8de0-c4dfb1306f75d675856067058479cb6f53a52e55.gz

BUILD-MINGW.sh

index bab50309708d7e2363fe5815bb4b0f6b5ff07d17..d0e2d8ec4b18c744089bee93f2ddc8299c18929c 100755 (executable)
@@ -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 ../..