public
Description: Io programming language
Homepage: http://iolanguage.com
Clone URL: git://github.com/stevedekorte/io.git
io /
name age message
file .gitattributes Tue Dec 04 21:35:44 -0800 2007 Revert the 'chmod -R a+x' which happend in comm... [Christian Thaeter]
file .gitignore Sun Oct 25 22:13:08 -0700 2009 ignore osxmain/build [Rich Collins]
file Makefile Tue Jul 07 00:00:20 -0700 2009 latest [Steve Dekorte]
file Makefile.lib Tue Oct 27 13:01:38 -0700 2009 reverse debugging changes [Rich Collins]
file README.txt Mon Oct 12 02:17:51 -0700 2009 Fix for build instructions, thanks to FastJack [Steve Dekorte]
directory addons/ Tue Nov 17 00:50:00 -0800 2009 Merge branch 'master' of git://github.com/richc... [Steve Dekorte]
file build.io Thu Feb 07 04:46:21 -0800 2008 launchPath fix for build.io and DBI doc updates [Steve Dekorte]
directory build/ Tue Oct 27 17:51:39 -0700 2009 removed backtrace from EventManager, cleanup of... [Steve Dekorte]
file depends Fri Jan 02 01:13:06 -0800 2009 initial commit [Steve Dekorte]
directory docs/ Thu Oct 08 17:01:54 -0700 2009 some Snow Leopard warning fixes [Steve Dekorte]
directory extras/ Sun Oct 25 22:13:08 -0700 2009 ignore osxmain/build [Rich Collins]
directory libs/ Tue Nov 17 00:50:00 -0800 2009 Merge branch 'master' of git://github.com/richc... [Steve Dekorte]
directory license/ Fri Jan 02 01:13:06 -0800 2009 initial commit [Steve Dekorte]
directory samples/ Sat Dec 27 03:26:44 -0800 2008 use ::= instead of newSlot() ::= is syntactic ... [Atomixx]
directory scm/ Fri Feb 22 17:51:47 -0800 2008 Cleanup of root folder and more Directory docs [Steve Dekorte]
directory tools/ Tue Oct 27 13:01:38 -0700 2009 reverse debugging changes [Rich Collins]
README.txt
ABOUT
-----

Io is a dynamic prototype-based programming language. 
The programming guide and reference manual can be found in the docs folder.

INSTALLING
----------

Io is two parts - the vm and the addons/packages. Don't worry if all the addons don't compile for you - some are 
platform specific or not well supported.

OSX
---
cd to Io folder
make vm; sudo make install; sudo make port; sudo make install

Debian or Ubuntu
----------------
cd to Io folder
make vm; sudo make install; su -c "sudo make aptget"; make; sudo make install

Gentoo
------
make vm; sudo make install; su -c "sudo make emerge"; make; sudo make install



MS WINDOWS WITH CYGWIN
----------------------

1) [once] Ensure your VisualStudio has the Windows SDK. 

2) Start up a Visual Studio Command Prompt using the start menu link (inside the Visual Studio Tools subfolder), or from 
a command prompt execute "%PROGRAMFILES%\Microsoft Visual Studio 9.0\VC\vcvarsall.bat". This sets up environment 
variables needed by the compiler.

3) 'cd' to your Git source root folder for Io.

4) Run "bash" so that Cygwin tools, "make" in particular, are available.

5) [once] Run "which link" and ensure it finds VisualStudio's link, not Cygwin's (/bin/link). If this finds Cygwin's, 
you need to edit your ~/.bashrc file so that the $PATH will contain /bin after the VS bin folder, then restart from step 
2.

6) make SYS=Windows vm
Note that "make CC=cl vm" doesn't work. If SYS is unset, it gets set in the makefile as `uname -s`, which is something 
like CYGWIN_NT-5.1, and all the command line options will be those of gcc, which are inappropriate for compiling with 
the Microsoft compiler, cl. INSTALL_PREFIX is no longer needed here on Windows; you can move the installation around, 
and Io will still work.

7) make SYS=Windows addons
Builds addons. Some won't build because needed libraries (header files) aren't present. Some others fail to build with 
errors. Still, some build and are usable.

8) make SYS=Windows INSTALL_PREFIX=C:/Io install
Installs Io where specified. Note, use forward slashes here, not backslashes.