diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-04-25 17:55:34 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2015-04-25 17:55:34 +0900 |
| commit | ed3a25337226015ba0356a9027e0e4965b5788b3 (patch) | |
| tree | 183da64891e4ffcbc8e815f9a8659a379e163104 /benchmark/build_config_cc.rb | |
| parent | 6246483f12366818e38a5cd6070f71fefe0b8b94 (diff) | |
| parent | ed03b17bb484db1ade3e1aa9260bd85c7166ce49 (diff) | |
| download | mruby-ed3a25337226015ba0356a9027e0e4965b5788b3.tar.gz mruby-ed3a25337226015ba0356a9027e0e4965b5788b3.zip | |
Merge pull request #2772 from furunkel/bench_task
Add rake task for benchmarking
Diffstat (limited to 'benchmark/build_config_cc.rb')
| -rw-r--r-- | benchmark/build_config_cc.rb | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/benchmark/build_config_cc.rb b/benchmark/build_config_cc.rb new file mode 100644 index 000000000..56d725bc7 --- /dev/null +++ b/benchmark/build_config_cc.rb @@ -0,0 +1,13 @@ +MRuby::Build.new do |conf| + toolchain :gcc +end + +MRuby::Build.new('gcc') do |conf| + toolchain :gcc + conf.gembox 'default' +end + +MRuby::Build.new('clang') do |conf| + toolchain :clang + conf.gembox 'default' +end |
