diff options
author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-27 05:59:03 +0000 |
---|---|---|
committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-12-27 05:59:03 +0000 |
commit | 6202f851c777a8327491ddca8f2df39b20ff9b5a (patch) | |
tree | 6f9e1b9a22f7b1f58a4d23e6e44b3c3cff16c6b0 /README | |
parent | 317996699cf5ce975701fa3becdb03dc1aaf0fb7 (diff) | |
download | ruby-6202f851c777a8327491ddca8f2df39b20ff9b5a.tar.gz ruby-6202f851c777a8327491ddca8f2df39b20ff9b5a.tar.xz ruby-6202f851c777a8327491ddca8f2df39b20ff9b5a.zip |
matz
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'README')
-rw-r--r-- | README | 15 |
1 files changed, 9 insertions, 6 deletions
@@ -46,11 +46,14 @@ in the mail body (not subject) to the address <ruby-talk-ctl@netlab.co.jp>. This is what you need to do to compile and install Ruby: - 1. Run ./configure, which will generate config.h and Makefile. + 1. If ./configure does not exist or is older than configure.in, + run autoconf to (re)generate configure. - 2. Edit defines.h if you need. Probably this step will not need. + 2. Run ./configure, which will generate config.h and Makefile. - 3. Remove comment mark(#) before the module names from ext/Setup (or + 3. Edit defines.h if you need. Probably this step will not need. + + 4. Remove comment mark(#) before the module names from ext/Setup (or add module names if not present), if you want to link modules statically. @@ -59,13 +62,13 @@ This is what you need to do to compile and install Ruby: remove comment mark from the line "#option nodynamic" in ext/Setup. - 4. Run make. + 5. Run make. - 5. Optionally, run 'make test' to check whether the compiled Ruby + 6. Optionally, run 'make test' to check whether the compiled Ruby interpreter works well. If you see the message "test succeeded", your ruby works as it should (hopefully). - 6. Run 'make install' + 7. Run 'make install' You may have to be a super user to install ruby. |