Amalgamation combines all mruby source files into a single mruby.c and
mruby.h for easy embedding, similar to SQLite's distribution model.
- Simple integration: Just two files to add to your project
- Single compilation unit: Enables better compiler optimization
- No build system required: Compile directly with any C compiler
- Portable: No external dependencies beyond standard C library (but see Platform-Dependent Gems below)
rake amalgamOutput files are generated in build/<target>/amalgam/:
mruby.h- All headers concatenated in dependency ordermruby.c- All sources concatenated (core + gems + mrblib)
The amalgamation includes gems specified in your build configuration:
MRUBY_CONFIG=build_config/minimal.rb rake amalgam#include "mruby.h"
int main(void) {
mrb_state *mrb = mrb_open();
mrb_load_string(mrb, "puts 'Hello from mruby!'");
mrb_close(mrb);
return 0;
}gcc -I./build/host/amalgam your_app.c ./build/host/amalgam/mruby.c -o your_app -lmFor optimized builds:
gcc -O2 -DNDEBUG -I./build/host/amalgam your_app.c ./build/host/amalgam/mruby.c -o your_app -lmThe following gems work with amalgamation:
mruby-compiler- Required formrb_load_stringmruby-eval-eval,Bindingmruby-array-ext,mruby-string-ext,mruby-hash-extmruby-numeric-ext,mruby-range-ext,mruby-symbol-extmruby-proc-ext,mruby-kernel-ext,mruby-object-ext,mruby-class-extmruby-enum-ext,mruby-compar-extmruby-error,mruby-math,mruby-structmruby-bigint,mruby-rational,mruby-complexmruby-io(withhal-posix-io)mruby-task(withhal-posix-task)
Gems that use a HAL (Hardware Abstraction Layer) include
platform-specific code in the amalgamation. For example, if
mruby-io selects hal-posix-io on Linux, the generated mruby.c
contains POSIX-specific code and cannot be compiled on Windows.
If you need amalgamated files for multiple platforms, generate them separately for each target platform (or cross-build configuration).
Binary gems (mruby-bin-*) are automatically excluded as they contain
their own main() function. The amalgamation produces a library, not
an executable.
A minimal configuration for amalgamation:
# build_config/amalgam.rb
MRuby::Build.new do |conf|
conf.toolchain :gcc
conf.gem core: 'mruby-compiler'
conf.gem core: 'mruby-error'
conf.gem core: 'mruby-eval'
conf.gem core: 'mruby-array-ext'
conf.gem core: 'mruby-string-ext'
conf.gem core: 'mruby-hash-ext'
conf.gem core: 'mruby-io'
endGenerate with:
MRUBY_CONFIG=build_config/amalgam.rb rake amalgamTypical sizes depend on included gems:
mruby.h: 200-500 KBmruby.c: 2-4 MB
- Include guards are stripped to allow concatenation
- Headers are ordered by dependency (foundation types first)
- Internal includes are commented out (already in
mruby.h)
- Sources are concatenated in proper initialization order
- X-macro headers (like
mruby/ops.h) are inlined at each use - Local includes (
.cstubfiles) are automatically inlined - Generated files (
mrblib.c,gem_init.c) are included
Gems that add preprocessor defines affecting core structures are
automatically detected and included at the top of mruby.h.
Supported patterns: MRB_USE_*, MRB_UTF8_*, HAVE_MRUBY_*.
- Core sources (
src/*.c) - Gem sources (
mrbgems/*/src/*.corcore/*.c) - Generated mrblib (
build/*/mrblib/mrblib.c) - Gem initialization (
build/*/mrbgems/gem_init.c)