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
a8ab74a6
Commit
a8ab74a6
authored
Apr 08, 2020
by
mimaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Merged `cygwin_filename()` into `filename()` because Cygwin pathnames are in UNIX format.
parent
7ab5353f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
44 deletions
+11
-44
lib/mruby/build.rb
lib/mruby/build.rb
+0
-8
lib/mruby/build/command.rb
lib/mruby/build/command.rb
+11
-36
No files found.
lib/mruby/build.rb
View file @
a8ab74a6
...
...
@@ -276,14 +276,6 @@ EOS
end
end
def
cygwin_filename
(
name
)
if
name
.
is_a?
(
Array
)
name
.
flatten
.
map
{
|
n
|
cygwin_filename
(
n
)
}
else
'"%s"'
%
`cygpath -w "
#{
filename
(
name
)
}
"`
.
strip
end
end
def
exefile
(
name
)
if
name
.
is_a?
(
Array
)
name
.
flatten
.
map
{
|
n
|
exefile
(
n
)
}
...
...
lib/mruby/build/command.rb
View file @
a8ab74a6
...
...
@@ -4,7 +4,7 @@ module MRuby
class
Command
include
Rake
::
DSL
extend
Forwardable
def_delegators
:@build
,
:filename
,
:objfile
,
:libfile
,
:exefile
,
:cygwin_filename
def_delegators
:@build
,
:filename
,
:objfile
,
:libfile
,
:exefile
attr_accessor
:build
,
:command
def
initialize
(
build
)
...
...
@@ -79,26 +79,17 @@ module MRuby
def
all_flags
(
_defines
=
[],
_include_paths
=
[],
_flags
=
[])
define_flags
=
[
defines
,
_defines
].
flatten
.
map
{
|
d
|
option_define
%
d
}
include_path_flags
=
[
include_paths
,
_include_paths
].
flatten
.
map
do
|
f
|
if
MRUBY_BUILD_HOST_IS_CYGWIN
option_include_path
%
cygwin_filename
(
f
)
else
option_include_path
%
filename
(
f
)
end
end
[
flags
,
define_flags
,
include_path_flags
,
_flags
].
flatten
.
join
(
' '
)
end
def
run
(
outfile
,
infile
,
_defines
=
[],
_include_paths
=
[],
_flags
=
[])
mkdir_p
File
.
dirname
(
outfile
)
_pp
"CC"
,
infile
.
relative_path
,
outfile
.
relative_path
if
MRUBY_BUILD_HOST_IS_CYGWIN
_run
compile_options
,
{
:flags
=>
all_flags
(
_defines
,
_include_paths
,
_flags
),
:infile
=>
cygwin_filename
(
infile
),
:outfile
=>
cygwin_filename
(
outfile
)
}
else
_run
compile_options
,
{
:flags
=>
all_flags
(
_defines
,
_include_paths
,
_flags
),
:infile
=>
filename
(
infile
),
:outfile
=>
filename
(
outfile
)
}
end
end
def
define_rules
(
build_dir
,
source_dir
=
''
)
@out_ext
=
build
.
exts
.
object
...
...
@@ -191,12 +182,8 @@ module MRuby
def
all_flags
(
_library_paths
=
[],
_flags
=
[])
library_path_flags
=
[
library_paths
,
_library_paths
].
flatten
.
map
do
|
f
|
if
MRUBY_BUILD_HOST_IS_CYGWIN
option_library_path
%
cygwin_filename
(
f
)
else
option_library_path
%
filename
(
f
)
end
end
[
flags
,
library_path_flags
,
_flags
].
flatten
.
join
(
' '
)
end
...
...
@@ -209,13 +196,6 @@ module MRuby
library_flags
=
[
libraries
,
_libraries
].
flatten
.
map
{
|
d
|
option_library
%
d
}
_pp
"LD"
,
outfile
.
relative_path
if
MRUBY_BUILD_HOST_IS_CYGWIN
_run
link_options
,
{
:flags
=>
all_flags
(
_library_paths
,
_flags
),
:outfile
=>
cygwin_filename
(
outfile
)
,
:objs
=>
cygwin_filename
(
objfiles
).
join
(
' '
),
:flags_before_libraries
=>
[
flags_before_libraries
,
_flags_before_libraries
].
flatten
.
join
(
' '
),
:flags_after_libraries
=>
[
flags_after_libraries
,
_flags_after_libraries
].
flatten
.
join
(
' '
),
:libs
=>
library_flags
.
join
(
' '
)
}
else
_run
link_options
,
{
:flags
=>
all_flags
(
_library_paths
,
_flags
),
:outfile
=>
filename
(
outfile
)
,
:objs
=>
filename
(
objfiles
).
map
{
|
f
|
%Q["
#{
f
}
"]
}.
join
(
' '
),
:flags_before_libraries
=>
[
flags_before_libraries
,
_flags_before_libraries
].
flatten
.
join
(
' '
),
...
...
@@ -223,7 +203,6 @@ module MRuby
:libs
=>
library_flags
.
join
(
' '
)
}
end
end
end
class
Command::Archiver
<
Command
attr_accessor
:archive_options
...
...
@@ -237,13 +216,9 @@ module MRuby
def
run
(
outfile
,
objfiles
)
mkdir_p
File
.
dirname
(
outfile
)
_pp
"AR"
,
outfile
.
relative_path
if
MRUBY_BUILD_HOST_IS_CYGWIN
_run
archive_options
,
{
:outfile
=>
cygwin_filename
(
outfile
),
:objs
=>
cygwin_filename
(
objfiles
).
map
{
|
f
|
%Q["
#{
f
}
"]
}.
join
(
' '
)
}
else
_run
archive_options
,
{
:outfile
=>
filename
(
outfile
),
:objs
=>
filename
(
objfiles
).
map
{
|
f
|
%Q["
#{
f
}
"]
}.
join
(
' '
)
}
end
end
end
class
Command::Yacc
<
Command
attr_accessor
:compile_options
...
...
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