mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
resolve conflicts
This commit is contained in:
@@ -277,7 +277,7 @@ module MiniRake
|
||||
|
||||
# Run the system command +cmd+.
|
||||
def sh(cmd)
|
||||
puts cmd
|
||||
puts cmd if $verbose
|
||||
system(cmd) or fail "Command Failed: [#{cmd}]"
|
||||
end
|
||||
|
||||
@@ -418,7 +418,7 @@ class RakeApp
|
||||
|
||||
# Read and handle the command line options.
|
||||
def handle_options
|
||||
$verbose = true
|
||||
$verbose = false
|
||||
opts = GetoptLong.new(*command_line_options)
|
||||
opts.each { |opt, value| do_option(opt, value) }
|
||||
end
|
||||
|
||||
@@ -7,6 +7,7 @@ MRuby.each_target do
|
||||
mrbc_, *rbfiles = t.prerequisites
|
||||
FileUtils.mkdir_p File.dirname(t.name)
|
||||
open(t.name, 'w') do |f|
|
||||
_pp "GEN *.rb > #{t.name}"
|
||||
f.puts File.read("#{dir}/init_mrblib.c")
|
||||
mrbc.run f, rbfiles, 'mrblib_irep'
|
||||
end
|
||||
|
||||
@@ -46,11 +46,15 @@ module MRuby
|
||||
@linker = LinkerConfig.new([], [], [])
|
||||
|
||||
@rbfiles = Dir.glob("#{dir}/mrblib/*.rb")
|
||||
@objs = Dir.glob("#{dir}/src/*.{c,cpp,m,asm,S}").map { |f| objfile(f.relative_path_from(@dir).to_s.pathmap("#{build_dir}/%X")) }
|
||||
@objs = Dir.glob("#{dir}/src/*.{c,cpp,m,asm,S}").map do |f|
|
||||
objfile(f.relative_path_from(@dir).to_s.pathmap("#{build_dir}/%X"))
|
||||
end
|
||||
@objs << objfile("#{build_dir}/gem_init")
|
||||
|
||||
@test_rbfiles = Dir.glob("#{dir}/test/*.rb")
|
||||
@test_objs = Dir.glob("#{dir}/test/*.{c,cpp,m,asm,S}").map { |f| objfile(f.relative_path_from(dir).to_s.pathmap("#{build_dir}/%X")) }
|
||||
@test_objs = Dir.glob("#{dir}/test/*.{c,cpp,m,asm,S}").map do |f|
|
||||
objfile(f.relative_path_from(dir).to_s.pathmap("#{build_dir}/%X"))
|
||||
end
|
||||
@test_preload = 'test/assert.rb'
|
||||
|
||||
instance_eval(&@initializer)
|
||||
|
||||
@@ -54,7 +54,13 @@ module MRuby
|
||||
|
||||
def run(outfile, infile, _defineds=[], _include_paths=[], _flags=[])
|
||||
FileUtils.mkdir_p File.dirname(outfile)
|
||||
_run compile_options, { :flags => all_flags(_defineds, [_include_paths, File.dirname(infile)], _flags), :infile => filename(infile), :outfile => filename(outfile) }
|
||||
define_flags = [defines, _defineds].flatten.map{ |d| option_define % d }
|
||||
include_path_flags = [include_paths, _include_paths, File.dirname(infile)].flatten.map do |f|
|
||||
option_include_path % filename(f)
|
||||
end
|
||||
_pp "CC #{filename(infile)} > #{filename(outfile)}"
|
||||
_run compile_options, { :flags => (flags + define_flags + include_path_flags + _flags).join(' '),
|
||||
:infile => filename(infile), :outfile => filename(outfile) }
|
||||
end
|
||||
|
||||
def define_rules(build_dir, source_dir='')
|
||||
@@ -123,7 +129,12 @@ module MRuby
|
||||
|
||||
def run(outfile, objfiles, _libraries=[], _library_paths=[], _flags=[])
|
||||
FileUtils.mkdir_p File.dirname(outfile)
|
||||
_run link_options, { :flags => all_flags(_library_paths, _flags), :outfile => filename(outfile) , :objs => filename(objfiles).join(' '), :libs => library_flags(_libraries) }
|
||||
library_flags = [libraries, _libraries].flatten.reverse.map{ |d| option_library % d }
|
||||
library_path_flags = [library_paths, _library_paths].flatten.map{ |f| option_library_path % filename(f) }
|
||||
_pp "LD #{filename(outfile)}"
|
||||
_run link_options, { :flags => (flags + library_path_flags + _flags).join(' '),
|
||||
:outfile => filename(outfile) , :objs => filename(objfiles).join(' '),
|
||||
:libs => library_flags.join(' ') }
|
||||
end
|
||||
end
|
||||
|
||||
@@ -138,6 +149,7 @@ module MRuby
|
||||
|
||||
def run(outfile, objfiles)
|
||||
FileUtils.mkdir_p File.dirname(outfile)
|
||||
_pp "AR #{filename(outfile)}"
|
||||
_run archive_options, { :outfile => filename(outfile), :objs => filename(objfiles).join(' ') }
|
||||
end
|
||||
end
|
||||
@@ -153,6 +165,7 @@ module MRuby
|
||||
|
||||
def run(outfile, infile)
|
||||
FileUtils.mkdir_p File.dirname(outfile)
|
||||
_pp "YACC #{filename(infile)} > #{filename(outfile)}"
|
||||
_run compile_options, { :outfile => filename(outfile) , :infile => filename(infile) }
|
||||
end
|
||||
end
|
||||
@@ -168,6 +181,7 @@ module MRuby
|
||||
|
||||
def run(outfile, infile)
|
||||
FileUtils.mkdir_p File.dirname(outfile)
|
||||
_pp "GPERF #{filename(infile)} > #{filename(outfile)}"
|
||||
_run compile_options, { :outfile => filename(outfile) , :infile => filename(infile) }
|
||||
end
|
||||
end
|
||||
@@ -184,6 +198,7 @@ module MRuby
|
||||
end
|
||||
|
||||
def run_clone(dir, url, _flags = [])
|
||||
_pp "GIT #{url} > #{filename(dir)}"
|
||||
_run clone_options, { :flags => [flags, _flags].flatten.join(' '), :url => url, :dir => filename(dir) }
|
||||
end
|
||||
end
|
||||
@@ -199,6 +214,7 @@ module MRuby
|
||||
@command ||= @build.mrbcfile
|
||||
IO.popen("#{filename @command} #{@compile_options % {:funcname => funcname}}", 'r+') do |io|
|
||||
[infiles].flatten.each do |f|
|
||||
_pp " MRBC #{f}"
|
||||
io.write IO.read(f)
|
||||
end
|
||||
io.close_write
|
||||
@@ -206,4 +222,4 @@ module MRuby
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
@@ -33,3 +33,26 @@ class Symbol
|
||||
proc { |obj, *args| obj.send(self, *args) }
|
||||
end
|
||||
end
|
||||
|
||||
$pp_show = true
|
||||
|
||||
if $verbose.nil?
|
||||
unless Rake.verbose.nil?
|
||||
if Rake.verbose.class == TrueClass
|
||||
# verbose message logging
|
||||
$pp_show = false
|
||||
else
|
||||
$pp_show = true
|
||||
Rake.verbose(false)
|
||||
end
|
||||
else
|
||||
# could not identify rake version
|
||||
$pp_show = false
|
||||
end
|
||||
else
|
||||
$pp_show = false if $verbose
|
||||
end
|
||||
|
||||
def _pp(msg)
|
||||
puts msg if $pp_show
|
||||
end
|
||||
|
||||
@@ -12,8 +12,8 @@ MRuby::Toolchain.new(:vs2012) do |conf|
|
||||
conf.linker do |linker|
|
||||
linker.command = ENV['LD'] || 'link.exe'
|
||||
linker.flags = [ENV['LDFLAGS'] || %w(/nologo)]
|
||||
linkerraries = %w(kernel32 user32 gdi32 winspool comdlg32 advapi32 shell32 ole32 oleaut32 uuid odbc32 odbccp32)
|
||||
linkerrary_paths = []
|
||||
linker.libraries = %w(kernel32 user32 gdi32 winspool comdlg32 advapi32 shell32 ole32 oleaut32 uuid odbc32 odbccp32)
|
||||
linker.library_paths = []
|
||||
linker.option_library = '-l%s'
|
||||
linker.option_library_path = '-L%s'
|
||||
linker.link_options = "%{flags} /OUT:%{outfile} %{objs} %{libs}"
|
||||
|
||||
@@ -19,6 +19,7 @@ MRuby.each_target do
|
||||
|
||||
file mlib => [clib]
|
||||
file clib => [mrbcfile, init, asslib] + mrbs do |t|
|
||||
_pp "GEN *.rb > #{clib}"
|
||||
open(clib, 'w') do |f|
|
||||
f.puts IO.read(init)
|
||||
mrbc.run f, [asslib] + mrbs, 'mrbtest_irep'
|
||||
|
||||
Reference in New Issue
Block a user