From: Gwenole B. <gb...@di...> - 2003-11-10 18:26:18
|
Hi, > * There is stil at least one little endian bug preventing SheepShaver > from running on x86 at this time. Fixed in current CVS. However, there is another bug lurking around but you can still boot without extensions and run applications (tested MacOS 8.1). On a P4 @ 1.8 GHz, Speedometer 4.x reports speeds around 1.7x of a real Quadra 605 (approx. 50% slower than B2 without JIT). Now next step is abviously to write the JIT. ;-) You will also need the following patch until a real fix appears. --- src/Unix/video_x.cpp 26 Oct 2003 07:54:02 -0000 1.4 +++ src/Unix/video_x.cpp 10 Nov 2003 17:59:33 -0000 @@ -199,7 +199,7 @@ // Try to create and attach SHM image have_shm = false; - if (local_X11 && depth != 1 && XShmQueryExtension(x_display)) { + if (0 && local_X11 && depth != 1 && XShmQueryExtension(x_display)) { // Create SHM image ("height + 2" for safety) img = XShmCreateImage(x_display, vis, depth, depth == 1 ? XYBitmap : ZPixmap, 0, &shminfo, width, height); |