A litte edit for cygwin on windows 64 bit

Machine-specific discussion
Unix, Linux, OS X, OS/2, Windows, ..?
Locked
dexter
Posts: 74
Joined: Fri Nov 11, 2011 12:55 am

A litte edit for cygwin on windows 64 bit

Post by dexter »

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

Code: Select all

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
:)

Locked