Revision
827
Author
lsansonetti@apple.com
Date
2009-03-01 14:42:14 -0800 (Sun, 01 Mar 2009)

Log Message

let's disable the GC during extensions build + install, there are still missing write barriers in YARV that cause random crashes and we will address this by the next release

Modified Paths

Diff

Modified: MacRuby/trunk/ext/extmk.rb (826 => 827)


--- MacRuby/trunk/ext/extmk.rb	2009-03-01 22:40:35 UTC (rev 826)
+++ MacRuby/trunk/ext/extmk.rb	2009-03-01 22:42:14 UTC (rev 827)
@@ -1,6 +1,8 @@
 #! /usr/local/bin/ruby
 # -*- ruby -*-
 
+GC.disable # XXX for now
+
 $extension = nil
 $extstatic = nil
 $force_static = nil

Modified: MacRuby/trunk/instruby.rb (826 => 827)


--- MacRuby/trunk/instruby.rb	2009-03-01 22:40:35 UTC (rev 826)
+++ MacRuby/trunk/instruby.rb	2009-03-01 22:42:14 UTC (rev 827)
@@ -1,5 +1,7 @@
 #!./miniruby
 
+GC.disable # XXX for now
+
 load "./rbconfig.rb"
 include RbConfig