Skip to content

Commit

Permalink
This version compiles and limps under Mac OS X 10.6.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctm committed Nov 11, 2010
1 parent 35b88c6 commit 50045ca
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 17 deletions.
25 changes: 9 additions & 16 deletions README
@@ -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
simulator. I have not yet committed my code to GitHub because I The configure line I used was:
honestly started the port Friday evening and ... it's a massive hack
that shouldn't be inflicted on anyone. CC='gcc -m32 -fno-stack-check -fno-stack-protector' OBJC='gcc -m32 -fno-stack-check -fno-stack-protector' ../../src/configure


However, I've done enough of a proof-of-concept that I'll go ahead and I'm using the version of syn68k that I built from my ancient_hackage
commit much cleaner mods "soon" and will also carry the port forward branch.
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 can send you a diff and some instructions, but it'll still be rough to
get it built. Send me a gentle reminder if I fall behind; Executor is
kind of a low priority for me this millennium.


======================================================================== ========================================================================


Expand Down
3 changes: 2 additions & 1 deletion src/include/rsys/types.h
Expand Up @@ -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
Expand Down

0 comments on commit 50045ca

Please sign in to comment.