mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
fdbfeaf533
You have to specify `TARGET` to specify a configuration, e.g. ``` rake TARGET=host-debug all test ``` When you port `mruby` to a new configuration: 1. copy an existing configuration under `target` directory 2. modify the new configuration file 3. build using the new configuration 4. send PR if you please
14 lines
276 B
Ruby
14 lines
276 B
Ruby
# Define cross build settings
|
|
MRuby::CrossBuild.new('32bit') do |conf|
|
|
toolchain :gcc
|
|
|
|
conf.cc.flags << "-m32"
|
|
conf.linker.flags << "-m32"
|
|
|
|
conf.build_mrbtest_lib_only
|
|
|
|
conf.gem 'examples/mrbgems/c_and_ruby_extension_example'
|
|
|
|
conf.test_runner.command = 'env'
|
|
end
|