Merge pull request #2962 from hone/spec_linker_flags_after_libraries

LinkerConfig is a struct with five params
This commit is contained in:
Yukihiro "Matz" Matsumoto
2015-10-01 19:52:53 +09:00
+1 -1
View File
@@ -52,7 +52,7 @@ module MRuby
MRuby::Build::COMMANDS.each do |command|
instance_variable_set("@#{command}", @build.send(command).clone)
end
@linker = LinkerConfig.new([], [], [], [])
@linker = LinkerConfig.new([], [], [], [], [])
@rbfiles = Dir.glob("#{dir}/mrblib/**/*.rb").sort
@objs = Dir.glob("#{dir}/src/*.{c,cpp,cxx,cc,m,asm,s,S}").map do |f|