How to compile the Ruby interpreter correctly

Source: Internet
Author: User
Usually when we compile a Ruby interpreter from the source code, we encounter problems where we cannot find some C-extension libraries. Here's how I compile the Ruby interpreter from the source code, the problems I've encountered, and how to solve these problems.

Compiling a Ruby interpreter is really simple, just unpack the Ruby code and then go to the Unzip directory, compile the interpreter and execute the compile command:

./configure--prefix=/usr/local/ruby
Make
Make Test

The extension library is then compiled, because the C extension library requires the system to have some dependent C libraries, so if the system does not have these C libraries, then the Ruby interpreter is compiled
Skip compiling and installing some ruby extension libraries. For example, the zlib extension library requires C's extension library support.

1, after the completion of the compilation, whether containing zlib, such as C extension library.
A: Not necessarily, if the system already has a dependent C library, then the interpreter will be compiled and installed automatically, otherwise you must compile the C extension library.
First install the C program library (download from http://www.zlib.net/zlib-1.2.3.tar.gz, make,make install),
And then to the Ext directory, make, make install.

The same is true for curses, download from http://ftp.gnu.org/pub/gnu/ncurses/, apt-get install g++,
Make, make install, Ruby extconf.rb, make, make install.

For installing the MySQL extension library with gems, Ruby EXTCONF.RB--with-mysql-dir=/usr/local/mysql/is required to specify the installation path for MySQL.
Then make and make install.
Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.