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
b7fe9292
Unverified
Commit
b7fe9292
authored
Aug 20, 2020
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update `Rakefile`.
So that you can omit `host` target. Now `host-debug` works.
parent
20ffc220
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
12 deletions
+18
-12
Rakefile
Rakefile
+12
-8
lib/mruby/build.rb
lib/mruby/build.rb
+6
-4
No files found.
Rakefile
View file @
b7fe9292
...
...
@@ -52,15 +52,19 @@ task :default => :all
bin_path
=
ENV
[
'INSTALL_DIR'
]
||
"
#{
MRUBY_ROOT
}
/bin"
depfiles
=
MRuby
.
targets
[
'host'
].
bins
.
map
do
|
bin
|
install_path
=
MRuby
.
targets
[
'host'
].
exefile
(
"
#{
bin_path
}
/
#{
bin
}
"
)
source_path
=
MRuby
.
targets
[
'host'
].
exefile
(
"
#{
MRuby
.
targets
[
'host'
].
build_dir
}
/bin/
#{
bin
}
"
)
file
install_path
=>
source_path
do
|
t
|
install_D
t
.
prerequisites
.
first
,
t
.
name
if
MRuby
.
targets
[
'host'
]
target
=
MRuby
.
targets
[
'host'
]
depfiles
=
target
.
bins
.
map
do
|
bin
|
install_path
=
target
.
exefile
(
"
#{
bin_path
}
/
#{
bin
}
"
)
source_path
=
target
.
exefile
(
"
#{
target
.
build_dir
}
/bin/
#{
bin
}
"
)
file
install_path
=>
source_path
do
|
t
|
install_D
t
.
prerequisites
.
first
,
t
.
name
end
install_path
end
install_path
else
depfiles
=
[]
end
MRuby
.
each_target
do
|
target
|
...
...
lib/mruby/build.rb
View file @
b7fe9292
...
...
@@ -247,9 +247,10 @@ EOS
def
mrbcfile
return
@mrbcfile
if
@mrbcfile
mrbc_build
=
MRuby
.
targets
[
'host'
]
gems
.
each
{
|
v
|
mrbc_build
=
self
if
v
.
name
==
'mruby-bin-mrbc'
}
@mrbcfile
=
mrbc_build
.
exefile
(
"
#{
mrbc_build
.
build_dir
}
/bin/mrbc"
)
unless
gems
.
detect
{
|
v
|
v
.
name
==
'mruby-bin-mrbc'
}
gem
:core
=>
"mruby-bin-mrbc"
end
@mrbcfile
=
self
.
exefile
(
"
#{
self
.
build_dir
}
/bin/mrbc"
)
end
def
compilers
...
...
@@ -387,7 +388,8 @@ EOS
end
def
mrbcfile
MRuby
.
targets
[
'host'
].
exefile
(
"
#{
MRuby
.
targets
[
'host'
].
build_dir
}
/bin/mrbc"
)
host
=
MRuby
.
targets
[
'host'
]
host
.
exefile
(
"
#{
host
.
build_dir
}
/bin/mrbc"
)
end
def
run_test
...
...
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