You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support for Cygwin on 64bit Windows OS (Windows 7)
uname -s returns "CYGWIN_NT-6.1.-WOW64" in Cygwin on Windows 7 64bit,
(uname -a returns "CYGWIN_NT-6.1-WOW64 hostname 1.7.7(0.230/5/3) 2010-08-31 09:58 i686 Cygwin")
so I think these lines should be included in http://jskeus.svn.sourceforge.net/svnroot/jskeus/trunk/Makefile
This post was originally posted at http://sourceforge.net/p/jskeus/tickets/15
Support for Cygwin on 64bit Windows OS (Windows 7)
uname -s returns "CYGWIN_NT-6.1.-WOW64" in Cygwin on Windows 7 64bit,
(uname -a returns "CYGWIN_NT-6.1-WOW64 hostname 1.7.7(0.230/5/3) 2010-08-31 09:58 i686 Cygwin")
so I think these lines should be included in http://jskeus.svn.sourceforge.net/svnroot/jskeus/trunk/Makefile
URL: http://jskeus.svn.sourceforge.net/svnroot/jskeus/trunk/Makefile
Index: Makefile
--- Makefile (revision 608)
+++ Makefile (working copy)
@@ -20,6 +20,10 @@
export ARCHDIR=Cygwin
export MAKEFILE=Makefile.Cygwin
endif
+ifeq ($(OS),CYGWIN_NT-6.1-WOW64)
+endif
ifeq ($(OS),Darwin)
export ARCHDIR=Darwin
export MAKEFILE=Makefile.Darwin
The text was updated successfully, but these errors were encountered: