mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
19 lines
358 B
Ruby
19 lines
358 B
Ruby
# Define cross build settings
|
|
MRuby::CrossBuild.new('no-float') do |conf|
|
|
conf.toolchain
|
|
|
|
# include the GEM box
|
|
conf.compilers.each do |c|
|
|
c.defines << "MRB_NO_FLOAT"
|
|
end
|
|
|
|
conf.gem :core => "mruby-bin-mruby"
|
|
conf.gem :core => "mruby-test"
|
|
|
|
conf.test_runner.command = 'env'
|
|
|
|
conf.enable_debug
|
|
# conf.enable_bintest
|
|
conf.enable_test
|
|
end
|