source: EcnlProtoTool/trunk/mruby-1.2.0/benchmark/build_config_boxing.rb@ 279

Last change on this file since 279 was 279, checked in by coas-nagasima, 7 years ago

ファイルを追加、更新。

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-ruby
File size: 456 bytes
Line 
1MRuby::Build.new do |conf|
2 toolchain :gcc
3end
4
5MRuby::Build.new('no_boxing') do |conf|
6 toolchain :gcc
7
8 conf.gembox 'default'
9end
10
11MRuby::Build.new('word_boxing') do |conf|
12 toolchain :gcc
13
14 conf.gembox 'default'
15 conf.compilers.each do |c|
16 c.defines += %w(MRB_WORD_BOXING)
17 end
18end
19
20MRuby::Build.new('nan_boxing') do |conf|
21 toolchain :gcc
22
23 conf.gembox 'default'
24 conf.compilers.each do |c|
25 c.defines += %w(MRB_NAN_BOXING)
26 end
27end
28
Note: See TracBrowser for help on using the repository browser.