Wondering if there is an update to the instructions currently on ironruby.net? I''ve downloaded the latest stable build of Mono and trying to use the latest SVN of IronRuby but it doesn''t want to compile. Even reverting to r112 like the instructions said doesn''t work. I downloaded the patches from http://sparcs.kaist.ac.kr/~tinuviel/download/IronRuby but I get the following errors: patching file Rakefile Hunk #1 FAILED at 155. Hunk #2 FAILED at 207. 2 out of 2 hunks FAILED -- saving rejects to file Rakefile.rej patching file context.rb Hunk #1 FAILED at 160. 1 out of 1 hunk FAILED -- saving rejects to file context.rb.rej patching file src/microsoft.scripting/hosting/shell/BasicConsole.cs Hunk #1 FAILED at 94. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting/hosting/shell/BasicConsole.cs.rej patching file src/ironruby/Builtins/RubyMethod.cs Hunk #1 FAILED at 60. 1 out of 1 hunk FAILED -- saving rejects to file src/ironruby/Builtins/ RubyMethod.cs.rej patching file src/microsoft.scripting.core/runtime/ReflectionCache.cs Hunk #1 FAILED at 48. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting.core/runtime/ReflectionCache.cs.rej patching file src/microsoft.scripting.core/actions/comdispatch/ comtypelibdesc.cs Hunk #1 FAILED at 133. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting.core/actions/comdispatch/comtypelibdesc.cs.rej patching file src/microsoft.scripting.core/actions/comdispatch/ DispCallable.cs Hunk #1 FAILED at 126. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting.core/actions/comdispatch/DispCallable.cs.rej Is this problem related to Mono or Ironruby? Jose Antonio Diaz
I haven''t tried to build under Mono for some time now. I know that the rake compile task is currently broken in r160 - that''s the task that you''ll need to use under Mono. Once RubyConf is done, we''ll spend some time fixing the Rakefile and verifying that everything works correctly under Mono. Thanks, -John -----Original Message----- From: ironruby-core-bounces at rubyforge.org [mailto:ironruby-core-bounces at rubyforge.org] On Behalf Of Jose Antonio Diaz Sent: Thursday, November 06, 2008 4:17 AM To: ironruby-core at rubyforge.org Subject: [Ironruby-core] Updated IronRuby / Mono install Wondering if there is an update to the instructions currently on ironruby.net? I''ve downloaded the latest stable build of Mono and trying to use the latest SVN of IronRuby but it doesn''t want to compile. Even reverting to r112 like the instructions said doesn''t work. I downloaded the patches from http://sparcs.kaist.ac.kr/~tinuviel/download/IronRuby but I get the following errors: patching file Rakefile Hunk #1 FAILED at 155. Hunk #2 FAILED at 207. 2 out of 2 hunks FAILED -- saving rejects to file Rakefile.rej patching file context.rb Hunk #1 FAILED at 160. 1 out of 1 hunk FAILED -- saving rejects to file context.rb.rej patching file src/microsoft.scripting/hosting/shell/BasicConsole.cs Hunk #1 FAILED at 94. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting/hosting/shell/BasicConsole.cs.rej patching file src/ironruby/Builtins/RubyMethod.cs Hunk #1 FAILED at 60. 1 out of 1 hunk FAILED -- saving rejects to file src/ironruby/Builtins/ RubyMethod.cs.rej patching file src/microsoft.scripting.core/runtime/ReflectionCache.cs Hunk #1 FAILED at 48. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting.core/runtime/ReflectionCache.cs.rej patching file src/microsoft.scripting.core/actions/comdispatch/ comtypelibdesc.cs Hunk #1 FAILED at 133. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting.core/actions/comdispatch/comtypelibdesc.cs.rej patching file src/microsoft.scripting.core/actions/comdispatch/ DispCallable.cs Hunk #1 FAILED at 126. 1 out of 1 hunk FAILED -- saving rejects to file src/ microsoft.scripting.core/actions/comdispatch/DispCallable.cs.rej Is this problem related to Mono or Ironruby? Jose Antonio Diaz _______________________________________________ Ironruby-core mailing list Ironruby-core at rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core
2008/11/6 Jose Antonio Diaz <jadiaz at cox.net>:> Wondering if there is an update to the instructions currently on > ironruby.net? > > I''ve downloaded the latest stable build of Mono and trying to use the latest > SVN of IronRuby but it doesn''t want to compile. Even reverting to r112 like > the instructions said doesn''t work.Really? Reverting back to old versions like r112 does work for me. Can you detail what you have done? -- Seo Sanghyeon
Seo, Here are the steps that I''ve taken on my Mac: - downloaded and installed the latest Mono binary for Mac - revert to rev112 of IronRuby on svn - curl "http://sparcs.kaist.ac.kr/~tinuviel/download/IronRuby/patch-mono-r112 " >> patch-mono-r112 - patch -p0 < patch-mono-r112 that modified the following files: patching file Rakefile patching file context.rb patching file src/microsoft.scripting/hosting/shell/BasicConsole.cs patching file src/ironruby/Builtins/RubyMethod.cs patching file src/microsoft.scripting.core/runtime/ReflectionCache.cs patching file src/microsoft.scripting.core/actions/comdispatch/ comtypelibdesc.cs patching file src/microsoft.scripting.core/actions/comdispatch/ DispCallable.cs - rake compile mono=1 (in /Users/racan/Projects/mono/ironruby) rake aborted! No such file or directory - /users/racan/projects/mono/ironruby/src/ microsoft.scripting.core /Users/racan/Projects/mono/ironruby/Rakefile:159 (See full trace by running task with --trace) Jose ------------------------------ Message: 6 Date: Fri, 7 Nov 2008 10:39:10 +0900 From: "Seo Sanghyeon" <sanxiyn at gmail.com> Subject: Re: [Ironruby-core] Updated IronRuby / Mono install To: ironruby-core at rubyforge.org Message-ID: <5b0248170811061739q65500f73va18aca47c85ba144 at mail.gmail.com> Content-Type: text/plain; charset=UTF-8 2008/11/6 Jose Antonio Diaz <jadiaz at cox.net>:> Wondering if there is an update to the instructions currently on > ironruby.net? > > I''ve downloaded the latest stable build of Mono and trying to use > the latest > SVN of IronRuby but it doesn''t want to compile. Even reverting to > r112 like > the instructions said doesn''t work.Really? Reverting back to old versions like r112 does work for me. Can you detail what you have done? -- Seo Sanghyeon -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20081107/35346d81/attachment.html>
2008/11/8 Jose Antonio Diaz <jadiaz at cox.net>:> (in /Users/racan/Projects/mono/ironruby) > rake aborted! > No such file or directory - > /users/racan/projects/mono/ironruby/src/microsoft.scripting.core > /Users/racan/Projects/mono/ironruby/Rakefile:159 > (See full trace by running task with --trace)This is weird. Apparently path is downcased (/users/racan/projects vs. /Users/racan/Projects). What do you get if you run with --trace as the message says? -- Seo Sanghyeon
Trace (in /Users/racan/Projects/mono/ironruby) ** Invoke compile (first_time) ** Invoke happy (first_time) ** Execute happy ** Invoke clean_build (first_time) ** Invoke happy ** Execute clean_build ** Invoke compile_dlr (first_time) ** Invoke clean_build ** Execute compile_dlr rake aborted! No such file or directory - /users/racan/projects/mono/ironruby/src/ microsoft.scripting.core ./context.rb:433:in `chdir'' ./context.rb:433:in `compile'' /Users/racan/Projects/mono/ironruby/Rakefile:159 ./context.rb:579:in `instance_eval'' ./context.rb:579:in `source_context'' /Users/racan/Projects/mono/ironruby/Rakefile:157 /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:546:in `call'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:546:in `execute'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:541:in `each'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:541:in `execute'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:508:in `invoke_with_call_chain'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `synchronize'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `invoke_with_call_chain'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:518:in `invoke_prerequisites'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `each'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `send'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1183:in `each'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:515:in `invoke_prerequisites'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:507:in `invoke_with_call_chain'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `synchronize'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:501:in `invoke_with_call_chain'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:494:in `invoke'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1931:in `invoke_task'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1909:in `top_level'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1909:in `each'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1909:in `top_level'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1948:in `standard_exception_handling'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1903:in `top_level'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1881:in `run'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1948:in `standard_exception_handling'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/lib/rake.rb:1878:in `run'' /Library/Ruby/Gems/1.8/gems/rake-0.8.1/bin/rake:31 /usr/bin/rake:19:in `load'' /usr/bin/rake:19 On Nov 7, 2008, at 3:12 PM, Seo Sanghyeon wrote:> 2008/11/8 Jose Antonio Diaz <jadiaz at cox.net>: >> (in /Users/racan/Projects/mono/ironruby) >> rake aborted! >> No such file or directory - >> /users/racan/projects/mono/ironruby/src/microsoft.scripting.core >> /Users/racan/Projects/mono/ironruby/Rakefile:159 >> (See full trace by running task with --trace) > > This is weird. Apparently path is downcased (/users/racan/projects vs. > /Users/racan/Projects). What do you get if you run with --trace as the > message says? > > -- > Seo Sanghyeon > _______________________________________________ > Ironruby-core mailing list > Ironruby-core at rubyforge.org > http://rubyforge.org/mailman/listinfo/ironruby-coreJose Antonio Diaz jadiaz at cox.net ?For those that understand, no explanation is needed. For those that do not understand, no explanation is possible.? -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20081107/27692d8f/attachment.html>