blob: 1138188e37e254822155397a027d3ebd9fdf7b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Define cross build settings
MRuby::CrossBuild.new('no-float') do |conf|
toolchain :gcc
# 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
|