Ruby-LLVM is a Ruby language binding to the LLVM compiler infrastructure library. LLVM allows users to create just-in-time (JIT) compilers, ahead-of-time (AOT) compilers for multiple architectures, code analyzers and more. LLVM bindings can also be used to speed up Ruby code by compiling and loading computationally intensive algorithms on the fly.
This library currently binds to LLVM-18 (specifically llvm-c 18.
The first two digits of ruby-llvm's version number refer to the required major and minor version of LLVM. The third digit refers to the ruby-llvm release itself. Because LLVM's api changes often, this coupling between LLVM and ruby-llvm versions is useful.
LLVM can be installed with Homebrew by executing brew install llvm --shared
- LLVM Download Page
- If compiling from source the --enable-shared and --enable-jit flags may be needed.
- The LLVM project
- Mirror of llvm-c on github
- ffi-gen – Generate FFI bindings with LLVM and Clang
Ruby-LLVM is available under the BSD 3-clause (see LICENSE), Copyright (c) 2010-2013 Jeremy Voorhis
Ruby-LLVM is possible because of its contributors:
- Evan Phoenix
- David Holroyd
- Takanori Ishikawa
- Ronaldo M. Ferraz
- Mac Malone
- Chris Wailes
- Ary Borenszweig
- Richard Musiol
- Juan Wajnerman
- Steven Farlie
- Peter Zotov
- Austin Seipp
- Torsten Rüger
- Nathaniel Barnes