Commit 03a8d0c0 authored by Eric Hodel's avatar Eric Hodel

Wrap INSTALL to 80 columns

parent a12d8e32
* Prerequisites * Prerequisites
1. Make sure you have bison (http://www.gnu.org/software/bison/) installed in your system. 1. Make sure you have bison (http://www.gnu.org/software/bison/) installed in
your system.
2. Make sure you have ruby installed in your system (required to build). 2. Make sure you have ruby installed in your system (required to build).
* Compilation and Installation * Compilation and Installation
1. Run make in the top directory. 1. Run make in the top directory.
This command will create a build directory with a directory for the host environment This command will create a build directory with a directory for the host
and one for each crossbuild environment based on the settings in the build_config.rb environment and one for each crossbuild environment based on the settings
file. in the build_config.rb file.
Assuming a default build, each of the environment directories will have the following Assuming a default build, each of the environment directories will have
important directories: the following important directories:
* bin - The binary executables for this environment * bin - The binary executables for this environment
* lib - The libraries for this environment * lib - The libraries for this environment
You can find the header files in the include directory at the root of the project. You can find the header files in the include directory at the root of the
project.
You can directly invoke 'minirake' with the following command: You can directly invoke 'minirake' with the following command:
...@@ -30,19 +33,19 @@ and OS type. ...@@ -30,19 +33,19 @@ and OS type.
* Adding existing gems * Adding existing gems
Gems from the [list of mruby gems](http://www.mruby.org/libraries/) can be added by adding Gems from the [list of mruby gems](http://www.mruby.org/libraries/) can be
their respective GitHub URLs to build_config.rb. For example, to add implementations of the added by adding their respective GitHub URLs to build_config.rb. For example,
File and IO Ruby core classes to mruby, insert the following in build_config.rb under the to add implementations of the File and IO Ruby core classes to mruby, insert
comment section `Use mrbgems`: the following in build_config.rb under the comment section `Use mrbgems`:
conf.gem :git => 'git@github.com:iij/mruby-io.git', :branch => 'master' conf.gem :git => 'git@github.com:iij/mruby-io.git', :branch => 'master'
Afterwards, re-run: Afterwards, re-run:
ruby ./minirake ruby ./minirake
* Porting to other platforms * Porting to other platforms
That's all. That's all.
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment