Skip to content

Commit 03a8d0c

Browse files
committed
Wrap INSTALL to 80 columns
1 parent a12d8e3 commit 03a8d0c

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

INSTALL

+18-15
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,30 @@
11
* Prerequisites
22

3-
1. Make sure you have bison (http://www.gnu.org/software/bison/) installed in your system.
3+
1. Make sure you have bison (http://www.gnu.org/software/bison/) installed in
4+
your system.
45
2. Make sure you have ruby installed in your system (required to build).
56

7+
68
* Compilation and Installation
79

810
1. Run make in the top directory.
911

10-
This command will create a build directory with a directory for the host environment
11-
and one for each crossbuild environment based on the settings in the build_config.rb
12-
file.
12+
This command will create a build directory with a directory for the host
13+
environment and one for each crossbuild environment based on the settings
14+
in the build_config.rb file.
1315

14-
Assuming a default build, each of the environment directories will have the following
15-
important directories:
16+
Assuming a default build, each of the environment directories will have
17+
the following important directories:
1618

1719
* bin - The binary executables for this environment
1820
* lib - The libraries for this environment
1921

20-
You can find the header files in the include directory at the root of the project.
22+
You can find the header files in the include directory at the root of the
23+
project.
2124

2225
You can directly invoke 'minirake' with the following command:
2326

24-
$ ruby ./minirake
27+
$ ruby ./minirake
2528

2629
If an error occurs when compiling mruby, it will be helpful for others if you
2730
send a detailed report to the developers that includes the error log, machine,
@@ -30,19 +33,19 @@ and OS type.
3033

3134
* Adding existing gems
3235

33-
Gems from the [list of mruby gems](http://www.mruby.org/libraries/) can be added by adding
34-
their respective GitHub URLs to build_config.rb. For example, to add implementations of the
35-
File and IO Ruby core classes to mruby, insert the following in build_config.rb under the
36-
comment section `Use mrbgems`:
36+
Gems from the [list of mruby gems](http://www.mruby.org/libraries/) can be
37+
added by adding their respective GitHub URLs to build_config.rb. For example,
38+
to add implementations of the File and IO Ruby core classes to mruby, insert
39+
the following in build_config.rb under the comment section `Use mrbgems`:
3740

3841
conf.gem :git => '[email protected]:iij/mruby-io.git', :branch => 'master'
3942

40-
Afterwards, re-run:
43+
Afterwards, re-run:
4144

42-
ruby ./minirake
45+
ruby ./minirake
4346

4447

4548
* Porting to other platforms
4649

47-
4850
That's all.
51+

0 commit comments

Comments
 (0)