Skip to content

JDReutt/racket-hack

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Before you start to Racket your life here
===============================
This is the port of Racket engine which currently runs on but not limited to iOS platform. The future plan is allow Racket to bring unique user experience to such mobile platforms as iOS, Android, WebOS, etc, because of Racket's amazing capabilities.


How to build for iOS
-------------------------------
Currently, the code is carefully taylored for iOS only, and you're recommended to use provided configure options. Besides, an Xcode project is included to facilitate you with various tests. In order to make your life easier, please follow below instructions to set up your build environment:
* Install iOS SDK 4.3. Currently, configure will pick by default 4.3 sdk to compile, so if you want to use other versions, please go ahead to make your change. It's easy!
* clone libffi-ios-hack from my another repo https://github.com/nevo/libffi-ios-hack, and put it under src/foreign/ with name of libffi-ios
* We'll need some precompiled host tools (racketcgc, e.g.) to help build libraries for iOS
  #cd $YOUR_GIT_REPO/src/host-precompiled/ & ./configure & make
* To build for iOS
  #cd $YOUR_GIT_REPO/src/build/ios/ & ./configure & make
* To build for iOS Simulator
  #cd $YOUR_GIT_REPO/src/build/ios.sim/ & ./configure & make
* Open XCode project to see how everything works:
  #open $YOUR_GIT_REPO/src/xcode/iRacket/iRacket.xcodeproj


The Racket programming language
===============================

Important executables:

* DrRacket: Racket's integrated development environment (start here!).

* Racket: the main command-line entry point for running racket programs
  and scripts.

* GRacket: the GUI-mode Racket executable.

* raco: Racket's command-line toolset.


More Information
----------------

Racket comes with extensive documentation: use DrRacket's `Help' menu,
or run `raco docs'.  Also, visit us at http://racket-lang.org/ for more
Racket resources.

Instructions for building Racket from source are in src/README.


License
-------

Racket
Copyright (c) 2010-2011 PLT Scheme Inc.

Racket is distributed under the GNU Lesser General Public License
(LGPL).  This means that you can link Racket into proprietary
applications, provided you follow the rules stated in the LGPL.  You can
also modify Racket; if you distribute a modified version, you must
distribute it under the terms of the LGPL, which in particular means
that you must release the source code for the modified software.  See
doc/release-notes/COPYING.txt for more information.

Packages

No packages published

Languages

  • Racket 69.7%
  • C 18.6%
  • KiCad Layout 3.3%
  • C++ 2.2%
  • Scheme 2.2%
  • Shell 1.3%
  • Other 2.7%