2009-11-27 20:54:25 +00:00
|
|
|
========================================================================
|
|
|
|
Mac OS X 10.6 (Snow Leopard) note: by default gcc now creates 64-bit
|
|
|
|
binaries, which means the version of Syn68k that will be built won't work
|
|
|
|
with Executor. The "-m32" command line option does the right thing, so it
|
|
|
|
should be possible to get Syn68k (and Executor) to work on Snow Leopard
|
|
|
|
again, but I don't know that I'll have much time for it.
|
|
|
|
========================================================================
|
|
|
|
|
|
|
|
|
2009-06-10 22:42:45 +00:00
|
|
|
Syn68k is a "synthetic CPU" that executes Motorola 68LC040
|
|
|
|
instructions, either via interpretation or via compilation into Intel
|
2009-06-23 04:38:05 +00:00
|
|
|
(32-bit) x86 instructions. It was originally written to allow
|
|
|
|
Executor (a Macintosh emulator) to run on platforms that didn't
|
|
|
|
contain a 680x0 CPU. Executor first ran on the Sun-3, and then on
|
|
|
|
NeXT computers.
|
2009-06-10 22:42:45 +00:00
|
|
|
|
2009-06-09 04:02:29 +00:00
|
|
|
Syn68k has not been actively worked on since about 1995. When it was
|
|
|
|
originally written, there were a bunch of alterable variables in
|
|
|
|
various Makefiles that allowed us to build Syn68k for many different
|
|
|
|
architectures with a few different features.
|
2008-09-26 14:28:53 +00:00
|
|
|
|
2009-06-23 04:38:05 +00:00
|
|
|
In late 2003 we did a partial conversion from our build system to the
|
|
|
|
GNU build system. The result was a Syn68k that could be built with
|
|
|
|
the then current version of gcc but basically only for the i386
|
|
|
|
architecture using the native code back-end. That's basically the
|
|
|
|
state Syn68k was in when I put the code on GitHub in September 2008.
|
2009-06-09 04:02:29 +00:00
|
|
|
|
|
|
|
In June 2009, I've been able to scrape together a little free time and
|
2009-06-23 04:38:05 +00:00
|
|
|
make it so Syn68k builds on a few more platforms than it did when I
|
|
|
|
first put it on GitHub. There's still a lot of cruft that can be
|
|
|
|
removed, but at least there are enough variants that can be built to
|
|
|
|
show that both big-endian (e.g., PowerPC) and little-endian
|
|
|
|
(e.g. i386, x86_64), 32-bit and 64-bit, native (i386-only) and
|
|
|
|
non-native versions work.
|
2009-06-01 21:45:49 +00:00
|
|
|
|
2009-06-23 04:38:05 +00:00
|
|
|
To compile syn68k, try
|
2009-06-01 21:45:49 +00:00
|
|
|
|
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
make
|
2009-06-23 04:38:05 +00:00
|
|
|
|
|
|
|
To test syn68k, run test/syngentest and compare the output to
|
|
|
|
test/output/10000. It should be the same, assuming the same block of
|
|
|
|
memory can be obtained for the test. If you want to be more thorough,
|
|
|
|
you can use other command line options and compare the results to
|
|
|
|
other files, as described in test/output/README.
|
|
|
|
|
|
|
|
If you plan on building Executor, you'll need to put Syn68k where it
|
|
|
|
can be found during Executor's build. The easiest way is with
|
|
|
|
|
2009-06-02 14:25:10 +00:00
|
|
|
make install
|
|
|
|
|
2009-06-09 04:02:29 +00:00
|
|
|
To compile a 32-bit syn68k on an x86_64 system, make sure you have all
|
2009-11-27 19:31:18 +00:00
|
|
|
the 32-bit libraries you need:
|
|
|
|
|
|
|
|
On Fedora 10 I needed to install glibc-devel.i386 and libgcc.i386
|
|
|
|
On Fedora 11 I needed glibc-devel.i586 and libgcc.i586
|
|
|
|
On Fedora 12 I needed the .i686 versions of those packages
|
|
|
|
|
|
|
|
Once you have those install, try this:
|
2009-06-04 00:27:34 +00:00
|
|
|
|
|
|
|
./autogen.sh
|
|
|
|
CC='gcc -m32' ./configure --build=i686-pc-linux-gnu --host=i686-pc-linux-gnu
|
|
|
|
make
|
|
|
|
make install
|
|
|
|
|
2009-06-23 04:38:05 +00:00
|
|
|
It's possible to compile a 64-bit version of Syn68k on an x86_64, but
|
|
|
|
such a version won't work with Executor yet (and will not use native
|
|
|
|
x86 instructions).
|
2009-06-03 11:02:50 +00:00
|
|
|
|
|
|
|
My email address is still <ctm@ardi.com>, although ARDI itself is
|
|
|
|
defunct. I get a ridiculous amount of spam and will quite possibly
|
2009-06-23 04:38:05 +00:00
|
|
|
not see email addressed to me. I'm ctm on GitHub (http://github.com)
|
2009-06-10 22:42:45 +00:00
|
|
|
and typically check my email there once a day.
|
2009-06-09 04:02:29 +00:00
|
|
|
|
|
|
|
--Cliff Matthews
|