This version compiles and limps under Mac OS X 10.6.5.

This commit is contained in:
Clifford T. Matthews 2010-11-11 16:26:47 -07:00
parent 35b88c60f9
commit 50045ca1e3
2 changed files with 8 additions and 14 deletions

19
README
View File

@ -1,19 +1,12 @@
Sunday April 18th, 2010 Mac OS X 10.6.5 notes:
Xcode: 3.2.3 64-bit Xcode IDE: 1688.0, Xcode Core: 1691.0, ToolSupport: 1591.0
I just presented (poorly) a copy of Executor running on the iPad The configure line I used was:
simulator. I have not yet committed my code to GitHub because I
honestly started the port Friday evening and ... it's a massive hack
that shouldn't be inflicted on anyone.
However, I've done enough of a proof-of-concept that I'll go ahead and CC='gcc -m32 -fno-stack-check -fno-stack-protector' OBJC='gcc -m32 -fno-stack-check -fno-stack-protector' ../../src/configure
commit much cleaner mods "soon" and will also carry the port forward
so that it can run on an actual (arm) using iPad (rather than the i386
using simulator).
If you attended iPadDevCamp and would like the source before I push it, I'm using the version of syn68k that I built from my ancient_hackage
I can send you a diff and some instructions, but it'll still be rough to branch.
get it built. Send me a gentle reminder if I fall behind; Executor is
kind of a low priority for me this millennium.
======================================================================== ========================================================================

View File

@ -15,7 +15,8 @@ typedef signed int int32;
#if !defined (BOOLEAN_T_TYPEDEFED) #if !defined (BOOLEAN_T_TYPEDEFED)
# undef FALSE # undef FALSE
# undef TRUE # undef TRUE
typedef enum { FALSE, TRUE } boolean_t; typedef int boolean_t;
enum { FALSE, TRUE };
#else /* BOOLEAN_T_TYPEDEFED */ #else /* BOOLEAN_T_TYPEDEFED */
# if !defined (FALSE) # if !defined (FALSE)
# define FALSE 0 # define FALSE 0