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
dfddc6a0
Unverified
Commit
dfddc6a0
authored
Jun 20, 2018
by
take-cheeze
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dependencies.
parent
e050cfb3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
7 additions
and
7 deletions
+7
-7
mrbgems/mruby-bin-mruby-config/mrbgem.rake
mrbgems/mruby-bin-mruby-config/mrbgem.rake
+3
-2
mrbgems/mruby-compiler/mrbgem.rake
mrbgems/mruby-compiler/mrbgem.rake
+1
-2
mrbgems/mruby-test/mrbgem.rake
mrbgems/mruby-test/mrbgem.rake
+3
-3
No files found.
mrbgems/mruby-bin-mruby-config/mrbgem.rake
View file @
dfddc6a0
...
@@ -19,9 +19,10 @@ MRuby.each_target do
...
@@ -19,9 +19,10 @@ MRuby.each_target do
mruby_config_path
=
"
#{
build_dir
}
/bin/
#{
mruby_config
}
"
mruby_config_path
=
"
#{
build_dir
}
/bin/
#{
mruby_config
}
"
@bins
<<
mruby_config
@bins
<<
mruby_config
file
mruby_config_path
=>
libfile
(
"
#{
build_dir
}
/lib/libmruby"
)
do
|
t
|
make_cfg
=
"
#{
build_dir
}
/lib/libmruby.flags.mak"
file
mruby_config_path
=>
[
libfile
(
"
#{
build_dir
}
/lib/libmruby"
),
make_cfg
]
do
|
t
|
FileUtils
.
copy
"
#{
File
.
dirname
(
__FILE__
)
}
/
#{
mruby_config
}
"
,
t
.
name
FileUtils
.
copy
"
#{
File
.
dirname
(
__FILE__
)
}
/
#{
mruby_config
}
"
,
t
.
name
config
=
Hash
[
open
(
"
#{
build_dir
}
/lib/libmruby.flags.mak"
).
read
.
split
(
"
\n
"
).
map
{
|
x
|
a
=
x
.
split
(
/\s*=\s*/
,
2
);
[
a
[
0
],
a
[
1
].
gsub
(
'\\"'
,
'"'
)
]}]
config
=
Hash
[
open
(
make_cfg
).
read
.
split
(
"
\n
"
).
map
{
|
x
|
a
=
x
.
split
(
/\s*=\s*/
,
2
);
[
a
[
0
],
a
[
1
].
gsub
(
'\\"'
,
'"'
)
]}]
IO
.
write
(
t
.
name
,
File
.
open
(
t
.
name
)
{
|
f
|
IO
.
write
(
t
.
name
,
File
.
open
(
t
.
name
)
{
|
f
|
f
.
read
.
gsub
(
/echo (MRUBY_CFLAGS|MRUBY_LIBS|MRUBY_LDFLAGS_BEFORE_LIBS|MRUBY_LDFLAGS|MRUBY_LIBMRUBY_PATH)/
)
{
|
x
|
config
[
$1
].
empty?
?
''
:
"echo
#{
config
[
$1
]
}
"
}
f
.
read
.
gsub
(
/echo (MRUBY_CFLAGS|MRUBY_LIBS|MRUBY_LDFLAGS_BEFORE_LIBS|MRUBY_LDFLAGS|MRUBY_LIBMRUBY_PATH)/
)
{
|
x
|
config
[
$1
].
empty?
?
''
:
"echo
#{
config
[
$1
]
}
"
}
})
})
...
...
mrbgems/mruby-compiler/mrbgem.rake
View file @
dfddc6a0
...
@@ -23,10 +23,9 @@ MRuby::Gem::Specification.new 'mruby-compiler' do |spec|
...
@@ -23,10 +23,9 @@ MRuby::Gem::Specification.new 'mruby-compiler' do |spec|
cc
.
run
t
.
name
,
t
.
prerequisites
.
first
,
[],
[
"
#{
current_dir
}
/core"
]
cc
.
run
t
.
name
,
t
.
prerequisites
.
first
,
[],
[
"
#{
current_dir
}
/core"
]
end
end
end
end
file
objfile
(
"
#{
current_build_dir
}
/core/y.tab"
)
=>
lex_def
# Parser
# Parser
file
"
#{
current_build_dir
}
/core/y.tab.c"
=>
[
"
#{
current_dir
}
/core/parse.y"
]
do
|
t
|
file
"
#{
current_build_dir
}
/core/y.tab.c"
=>
[
"
#{
current_dir
}
/core/parse.y"
,
lex_def
]
do
|
t
|
FileUtils
.
mkdir_p
File
.
dirname
t
.
name
FileUtils
.
mkdir_p
File
.
dirname
t
.
name
yacc
.
run
t
.
name
,
t
.
prerequisites
.
first
yacc
.
run
t
.
name
,
t
.
prerequisites
.
first
end
end
...
...
mrbgems/mruby-test/mrbgem.rake
View file @
dfddc6a0
...
@@ -31,7 +31,7 @@ MRuby::Gem::Specification.new('mruby-test') do |spec|
...
@@ -31,7 +31,7 @@ MRuby::Gem::Specification.new('mruby-test') do |spec|
mrbtest_objs
<<
assert_lib
mrbtest_objs
<<
assert_lib
file
assert_lib
=>
assert_c
file
assert_lib
=>
assert_c
file
assert_c
=>
assert_rb
do
|
t
|
file
assert_c
=>
[
assert_rb
,
build
.
mrbcfile
]
do
|
t
|
open
(
t
.
name
,
'w'
)
do
|
f
|
open
(
t
.
name
,
'w'
)
do
|
f
|
mrbc
.
run
f
,
assert_rb
,
'mrbtest_assert_irep'
mrbc
.
run
f
,
assert_rb
,
'mrbtest_assert_irep'
end
end
...
@@ -45,7 +45,7 @@ MRuby::Gem::Specification.new('mruby-test') do |spec|
...
@@ -45,7 +45,7 @@ MRuby::Gem::Specification.new('mruby-test') do |spec|
dep_list
=
build
.
gems
.
tsort_dependencies
(
g
.
test_dependencies
,
gem_table
).
select
(
&
:generate_functions
)
dep_list
=
build
.
gems
.
tsort_dependencies
(
g
.
test_dependencies
,
gem_table
).
select
(
&
:generate_functions
)
file
test_rbobj
=>
g
.
test_rbireps
file
test_rbobj
=>
g
.
test_rbireps
file
g
.
test_rbireps
=>
[
g
.
test_rbfiles
].
flatten
do
|
t
|
file
g
.
test_rbireps
=>
[
g
.
test_rbfiles
,
build
.
mrbcfile
].
flatten
do
|
t
|
FileUtils
.
mkdir_p
File
.
dirname
(
t
.
name
)
FileUtils
.
mkdir_p
File
.
dirname
(
t
.
name
)
open
(
t
.
name
,
'w'
)
do
|
f
|
open
(
t
.
name
,
'w'
)
do
|
f
|
g
.
print_gem_test_header
(
f
)
g
.
print_gem_test_header
(
f
)
...
@@ -169,7 +169,7 @@ MRuby::Gem::Specification.new('mruby-test') do |spec|
...
@@ -169,7 +169,7 @@ MRuby::Gem::Specification.new('mruby-test') do |spec|
file
clib
=>
active_gems_path
file
clib
=>
active_gems_path
file
mlib
=>
clib
file
mlib
=>
clib
file
clib
=>
init
do
|
t
|
file
clib
=>
[
init
,
build
.
mrbcfile
]
do
|
t
|
_pp
"GEN"
,
"*.rb"
,
"
#{
clib
.
relative_path
}
"
_pp
"GEN"
,
"*.rb"
,
"
#{
clib
.
relative_path
}
"
FileUtils
.
mkdir_p
File
.
dirname
(
clib
)
FileUtils
.
mkdir_p
File
.
dirname
(
clib
)
open
(
clib
,
'w'
)
do
|
f
|
open
(
clib
,
'w'
)
do
|
f
|
...
...
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