summaryrefslogtreecommitdiffhomepage
path: root/tasks
diff options
context:
space:
mode:
authorTerence Lee <[email protected]>2015-09-25 23:22:11 -0600
committerTerence Lee <[email protected]>2015-09-25 23:22:11 -0600
commitc717bbb77afe75cfefed4afbceaa09182ef828ae (patch)
tree3ef518b598670944f7a6737d4266db0ed2cb1ad1 /tasks
parent524a038876657a9cb062ec1e27015662e648d45f (diff)
downloadmruby-c717bbb77afe75cfefed4afbceaa09182ef828ae.tar.gz
mruby-c717bbb77afe75cfefed4afbceaa09182ef828ae.zip
LinkerConfig is a struct with five params
Diffstat (limited to 'tasks')
-rw-r--r--tasks/mrbgem_spec.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/mrbgem_spec.rake b/tasks/mrbgem_spec.rake
index 74aa5b817..900696c1b 100644
--- a/tasks/mrbgem_spec.rake
+++ b/tasks/mrbgem_spec.rake
@@ -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|