blob: 7df7c2e46277cebb96f0375ff318963a32312a14 (
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|
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
|