patch-build_config_rb 820 B

123456789101112131415161718192021222324252627282930313233343536
  1. $OpenBSD: patch-build_config_rb,v 1.1 2017/03/04 05:09:15 jeremy Exp $
  2. Don't build in debug mode by default.
  3. Only build binaries we plan to use.
  4. --- build_config.rb.orig Tue Nov 17 01:02:30 2015
  5. +++ build_config.rb Thu Mar 2 21:29:29 2017
  6. @@ -8,7 +8,7 @@ MRuby::Build.new do |conf|
  7. toolchain :gcc
  8. end
  9. - enable_debug
  10. + #enable_debug
  11. # Use mrbgems
  12. # conf.gem 'examples/mrbgems/ruby_extension_example'
  13. @@ -105,7 +105,7 @@ MRuby::Build.new('host-debug') do |conf|
  14. # bintest
  15. # conf.enable_bintest
  16. -end
  17. +end if false
  18. MRuby::Build.new('test') do |conf|
  19. # Gets set by the VS command prompts.
  20. @@ -120,7 +120,7 @@ MRuby::Build.new('test') do |conf|
  21. conf.enable_test
  22. conf.gembox 'default'
  23. -end
  24. +end if false
  25. # Define cross build settings
  26. # MRuby::CrossBuild.new('32bit') do |conf|