Merge pull request #713 from masuidrive/add_s_options_to_ar

Added s flag to ar command
This commit is contained in:
Yukihiro "Matz" Matsumoto
2013-01-09 08:48:43 -08:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ MRuby.each_target do
self.libmruby << objs
file "#{build_dir}/lib/libmruby_core.a" => objs do |t|
archive t.name, 'r', t.prerequisites
archive t.name, 'rs', t.prerequisites
end
# Parser
+1 -1
View File
@@ -1,5 +1,5 @@
MRuby.each_target do
file "#{build_dir}/lib/libmruby.a" => libmruby.flatten do |t|
archive t.name, 'r', t.prerequisites
archive t.name, 'rs', t.prerequisites
end
end