Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
3ec61c09
Unverified
Commit
3ec61c09
authored
May 02, 2020
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update `host*` targets to use `default.gembox`.
And now `default.gembox` includes `mruby-socket` gem.
parent
10b1a52b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
3 deletions
+6
-3
mrbgems/default.gembox
mrbgems/default.gembox
+3
-0
target/host-debug.rb
target/host-debug.rb
+1
-1
target/host-shared.rb
target/host-shared.rb
+1
-1
target/host.rb
target/host.rb
+1
-1
No files found.
mrbgems/default.gembox
View file @
3ec61c09
...
...
@@ -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"
...
...
target/host-debug.rb
View file @
3ec61c09
...
...
@@ -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)
...
...
target/host-shared.rb
View file @
3ec61c09
...
...
@@ -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
|
...
...
target/host.rb
View file @
3ec61c09
...
...
@@ -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|
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment