summaryrefslogtreecommitdiffhomepage
path: root/target/bench.rb
blob: 30ec56ad3ce24961b7cde6cf74da1a301da89bd5 (plain)
1
2
3
4
5
6
7
8
9
10
11
MRuby::Build.new('bench') do |conf|
  # Gets set by the VS command prompts.
  if ENV['VisualStudioVersion'] || ENV['VSINSTALLDIR']
    toolchain :visualcpp
  else
    toolchain :gcc
    conf.cc.flags << '-O3'
  end

  conf.gembox 'default'
end