[Sablevm-developer] Bug#245834: Missing amd64 support.
Brought to you by:
egagnon
From: Andreas J. <aj...@an...> - 2004-05-02 07:38:11
|
On 04-May-01 21:17, Grzegorz B. Prokopski wrote: > Just one thing: are we talking about x86-64 in 64bit mode? Yes, we are talking about x86_64 in 64bit native mode. > If yes, then did you have any other problems w/ porting? I needed a small patch to build the sablevm-classlib package for the amd64 architecture (see below). A few other packages needed similar small patches. I did not find any serious obstacles for a x86_64 native 64bit port. > If no, then what would be needed to make the 64bit port? > ex. is there libffi for x86-64 in 64bit mode? There is an almost complete port of the Debian system to x86_64 in native 64bit mode (including a libffi). However, there is no 'official' archive for this port yet. I hope this will change soon. Regards Andreas Jochens diff -urN ../tmp-orig/sablevm-classlib-1.1.3/native/fdlibm/ieeefp.h ./native/fdlibm/ieeefp.h --- ../tmp-orig/sablevm-classlib-1.1.3/native/fdlibm/ieeefp.h 2004-04-12 20:33:25.000000000 +0000 +++ ./native/fdlibm/ieeefp.h 2004-05-01 22:05:54.104662224 +0000 @@ -59,6 +59,10 @@ #define __IEEE_LITTLE_ENDIAN #endif +#ifdef __x86_64__ +#define __IEEE_LITTLE_ENDIAN +#endif + #ifdef __i960__ #define __IEEE_LITTLE_ENDIAN #endif |