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
c4277769
Unverified
Commit
c4277769
authored
Nov 02, 2020
by
Yukihiro "Matz" Matsumoto
Committed by
GitHub
Nov 02, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #5111 from shuujii/fix-parallel-build
Fix parallel build
parents
331b1193
9a5c78dc
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
8 deletions
+5
-8
Rakefile
Rakefile
+5
-2
doc/mruby3.md
doc/mruby3.md
+0
-6
No files found.
Rakefile
View file @
c4277769
...
...
@@ -232,7 +232,6 @@ end
desc
"preallocated symbols"
task
:gensym
=>
presym_inc
task
:all
=>
:gensym
depfiles
+=
MRuby
.
targets
.
map
{
|
n
,
t
|
t
.
libraries
...
...
@@ -243,7 +242,7 @@ depfiles += MRuby.targets.reject { |n, t| n == 'host' }.map { |n, t|
}.
flatten
desc
"build all targets, install (locally) in-repo"
task
:all
=>
depfiles
do
task
:all
=>
:build
do
puts
puts
"Build summary:"
puts
...
...
@@ -253,6 +252,10 @@ task :all => depfiles do
MRuby
::
Lockfile
.
write
end
task
:build
=>
:gensym
do
depfiles
.
each
{
|
dep
|
Rake
::
Task
[
dep
].
invoke
}
end
desc
"run all mruby tests"
task
:test
MRuby
.
each_target
do
...
...
doc/mruby3.md
View file @
c4277769
...
...
@@ -3,12 +3,6 @@ User visible changes in `mruby3`
# Build System
## `presym` target
The first compilation of
`mruby`
may require generation of a
static symbol table named
`build/presym`
. You can generate
the table by
`rake gensym`
.
## `build_config` directory
Typical build configuration files are located in
`build_config`
...
...
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