I compiled newlisp on win7 64bit today, found out the makefile for cygwin is outdated
and the configure of newlisp does not care the bits under cygwin
so here is a very little fix for configure
begin line 116
elif [ ${os_type} = CYGWIN ] ; then
if [ ${memory_model} = LP64 ]; then
cp makefile_cygwinLP64 makefile_build
else
cp makefile_cygwin makefile_build
fi
and duplicate the makefile_cygwin to makefile_cygwinLP64
and change the arguments -m32 to -m64 in the new makefile_cygwinLP64
hope to help newlisp to be more perfect
:)