diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-04-09 10:31:50 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2014-04-09 10:31:50 +0900 |
| commit | ec0f97ddfd466145a6bd1579a340d756fc7f09bc (patch) | |
| tree | 59f27ccd716b80263731e724470e6a20f1df06a6 | |
| parent | c11157eb405718671a359e3b47d2d46ee4b7ee73 (diff) | |
| parent | c4214d3ace5c33bb73a70d7d87fc9d2492dc2061 (diff) | |
| download | mruby-ec0f97ddfd466145a6bd1579a340d756fc7f09bc.tar.gz mruby-ec0f97ddfd466145a6bd1579a340d756fc7f09bc.zip | |
Merge pull request #2030 from kyab/fix-build_config-arduinodue
Fix build_config.rb for ArduinoDue
| -rw-r--r-- | examples/targets/ArduinoDue.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/examples/targets/ArduinoDue.rb b/examples/targets/ArduinoDue.rb index 6dae85ca1..59101c2cc 100644 --- a/examples/targets/ArduinoDue.rb +++ b/examples/targets/ArduinoDue.rb @@ -53,6 +53,9 @@ MRuby::CrossBuild.new("Arduino Due") do |conf| #do not build executable test conf.build_mrbtest_lib_only + #disable C++ exception + conf.disable_cxx_exception + #gems from core conf.gem :core => "mruby-print" conf.gem :core => "mruby-math" |
