Update host* targets to use default.gembox.

And now `default.gembox` includes `mruby-socket` gem.
This commit is contained in:
Yukihiro "Matz" Matsumoto
2020-05-02 09:09:17 +09:00
parent 10b1a52bb8
commit 3ec61c0929
4 changed files with 6 additions and 3 deletions
+3
View File
@@ -5,6 +5,9 @@ MRuby::GemBox.new do |conf|
# Use standard IO/File class
conf.gem :core => "mruby-io"
# Use standard IO/File class
conf.gem :core => "mruby-socket"
# Use standard Array#pack, String#unpack methods
conf.gem :core => "mruby-pack"
+1 -1
View File
@@ -11,7 +11,7 @@ MRuby::Build.new('host-debug') do |conf|
enable_debug
# include the default GEMs
conf.gembox 'full-core'
conf.gembox 'default'
# C compiler settings
conf.cc.defines = %w(MRB_ENABLE_DEBUG_HOOK)
+1 -1
View File
@@ -9,7 +9,7 @@ MRuby::Build.new do |conf|
end
# include the GEM box
conf.gembox 'full-core'
conf.gembox 'default'
# C compiler settings
conf.cc do |cc|
+1 -1
View File
@@ -20,7 +20,7 @@ MRuby::Build.new do |conf|
# conf.gem :git => 'git@github.com:mattn/mruby-onig-regexp.git', :branch => 'master', :options => '-v'
# include the GEM box
conf.gembox 'full-core'
conf.gembox 'default'
# C compiler settings
# conf.cc do |cc|