From: Jon Forums Date: 2012-04-15T06:21:19+09:00 Subject: Re: Compiling the Ruby 1.9.3 interpreter on Windows 7 Ralph Shnelvar wrote in post #1056418: > Is there a step by step article on what tools would be needed to compile > the Ruby interpreter? That is, where to find the latest Ruby code on > Github, the compiler to use, compiler settings, > environment variables, etc. > Have you seen the RubyInstaller http://rubyinstaller.org/ project? It not only provides Windows installers, binary archives, and CHM documentation, but also maintains a GH repo with build recipes https://github.com/thecodeshop/ruby for the interpreter, required dependencies, and a build toolchain we call the DevKit. And the recipes download all the required artifacts so you don't have to. Luis Lavena, myself, and the other RubyInstaller committers actively maintain the project. Luis is also a committer to the official Ruby repo. Building can be easier than this, but here's how I build from my local Ruby repo using an upversion MSYS/MinGW build toolchain. rake ruby19 local=c:\Users\Jon\Documents\RubyDev\ruby-git dkver=mingw-32-4.6.2 The build recipes also can be easily overridden if you want to tweak and optimize. Our ML: http://groups.google.com/group/rubyinstaller Getting started links: https://github.com/oneclick/rubyinstaller/wiki/FAQ https://github.com/oneclick/rubyinstaller/wiki/Troubleshooting https://github.com/oneclick/rubyinstaller/wiki/Development-Kit Jon -- Posted via http://www.ruby-forum.com/.