Re: [MacRuby-devel] [MacRuby] #759: Website does not layout correctly in some browsers

2010-06-28 Thread MacRuby
#759: Website does not layout correctly in some browsers -+-- Reporter: wsiegr...@… |Owner: lsansone...@… Type: defect | Status: closed Priority: blocker

[MacRuby-devel] Compilation Clarification

2010-06-28 Thread Geoffrey Grosenbach
Can I get a clarification on what the Compilation build step does? GOAL: Compile a MacRuby app and remove unnecessary Ruby files in order to achieve the smallest app size possible. I have a MacRuby 0.6 application built with Xcode. I'm building it with the Compile option so I get .rbo files in my

Re: [MacRuby-devel] Compilation Clarification

2010-06-28 Thread Laurent Sansonetti
Hi Geoffrey, On Jun 28, 2010, at 11:43 AM, Geoffrey Grosenbach wrote: > Can I get a clarification on what the Compilation build step does? > > GOAL: Compile a MacRuby app and remove unnecessary Ruby files in order > to achieve the smallest app size possible. > > I have a MacRuby 0.6 application

Re: [MacRuby-devel] A build error occurs that specified i368 arch with Trunk Head.

2010-06-28 Thread Laurent Sansonetti
I found a better reduction: $ VM_VERIFY_IR=1 arch -i386 ./miniruby -e "def foo(*a);42;end; p foo" 42 Incorrect number of arguments passed to called function! %2 = invoke i32 @ruby_scope1(i32 %0, i8* %1) to label %normal unwind label %rescue ; [#uses=1] Broken module found, verificat

Re: [MacRuby-devel] A build error occurs that specified i368 arch with Trunk Head.

2010-06-28 Thread Watson
Hi, Laurent. I watched a similar error message that I reported an issue: https://www.macruby.org/trac/ticket/763 Thank you for your reply. On 2010/06/29, at 9:00, Laurent Sansonetti wrote: I found a better reduction: $ VM_VERIFY_IR=1 arch -i386 ./miniruby -e "def foo(*a);42;end; p foo" 42

Re: [MacRuby-devel] Compilation Clarification

2010-06-28 Thread Geoffrey Grosenbach
On Mon, Jun 28, 2010 at 1:20 PM, Laurent Sansonetti wrote: > It's because File and Dir are core / builtin classes (like Array and String), > they are part of libmacruby.dylib which is still in your .app bundle. You > deleted the standard library. That makes sense. I'll use the --no_stdlib flag

Re: [MacRuby-devel] A build error occurs that specified i368 arch with Trunk Head.

2010-06-28 Thread Laurent Sansonetti
I believe the problem should now be fixed in r4303, can you try again? #763 seems unrelated to the change I made but it's in the same area (interpreter), I will have a look too. Laurent On Jun 28, 2010, at 5:16 PM, Watson wrote: > Hi, Laurent. > > I watched a similar error message that I repo

Re: [MacRuby-devel] Compilation Clarification

2010-06-28 Thread Laurent Sansonetti
On Jun 28, 2010, at 5:56 PM, Geoffrey Grosenbach wrote: > On Mon, Jun 28, 2010 at 1:20 PM, Laurent Sansonetti > wrote: >> It's because File and Dir are core / builtin classes (like Array and >> String), they are part of libmacruby.dylib which is still in your .app >> bundle. You deleted the sta

Re: [MacRuby-devel] A build error occurs that specified i368 arch with Trunk Head.

2010-06-28 Thread Watson
I was able to build with r4303 :) Thank you! On 2010/06/29, at 10:13, Laurent Sansonetti wrote: I believe the problem should now be fixed in r4303, can you try again? #763 seems unrelated to the change I made but it's in the same area (interpreter), I will have a look too. Laurent On Ju

[MacRuby-devel] [MacRuby] #764: Weird instance variable value of C extension.

2010-06-28 Thread MacRuby
#764: Weird instance variable value of C extension. +--- Reporter: cheke...@… | Owner: lsansone...@… Type: defect | Status: new Priority: blocker