Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-13 Thread Daniel Westendorf
Update: I opened up my project in Xcode 3.2.6, hit "Build and Archive", and everything worked. I'm at a loss as to why things simply were not working for me with Xcode 4, but they seem to be resolved! Thanks, dw On Wed, May 11, 2011 at 10:11 AM, Daniel Westendorf wrote: > Thanks for taking the

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-11 Thread Daniel Westendorf
Thanks for taking the time to look into this Josh. I hadn't used the file command on my bundle contents. After doing this on a vanilla MacRuby app, I did not find any files that were not x86_64. Also, I've been installing the latest nightly builds of Macruby. I'm sure it is something silly that I'

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-10 Thread Joshua Ballanco
Hey Daniel, Check in the console (/Applications/Utilities/Console.app) to see if there are any more specific warnings that get logged when you attempt to log your app. Have you verified the built architectures of all the binaries in your .app bundle with `file`? Also, you might try re-installin

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-10 Thread Daniel Westendorf
Hey all, I'm still having trouble with this. Does anyone else have any input? Like I said, I can create a vanilla MacRuby application in Xcode4, remove the i386 from the Valid Architectures and setting Architecture to 64-bit Intel, Archive using the Deployment target, and then Share and create a

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-09 Thread Daniel Westendorf
Here is a screenshot of my project's build settings: http://imgur.com/pGoLF Thoughts? Am I looking in the wrong place? dw On Mon, May 9, 2011 at 12:18 PM, Dominic Dagradi wrote: > If it's a blank MacRuby application, definitely check the "Valid > Architectures" again, for *all* configurations.

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-09 Thread Dominic Dagradi
If it's a blank MacRuby application, definitely check the "Valid Architectures" again, for *all* configurations. You might be editing only Debug, and not Release. Dominic Dagradi Developer, Bearded [email protected] http://bearded.com 412.376.7273 tel 412.945.6017 fax On Monday, May 9, 2011

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-09 Thread Daniel Westendorf
That is good to know. I don't think it relates to my specific problem though, since I'm getting the same error with a "blank" MacRuby application generated from Xcode, or am I misunderstanding? Thanks, Daniel On Mon, May 9, 2011 at 11:42 AM, Dominic Dagradi wrote: > It's not necessarily MacRuby

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-09 Thread Dominic Dagradi
It's not necessarily MacRuby or your application that is raising the invalid architecture warning. Any framework that contains PPC code will now flag your binary with Apple, so you need to remove the offending code. Growl seems to be a pretty common one in this case. Check out the comments on

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-09 Thread Daniel Westendorf
Hi Thomas, Thanks for the response. I actually already had both the ARCHS and VALID_ARCHS set exactly as you do. I'm also using codesign to sign the .app before I submit it. I'm still getting the same error. On a side note, if I create a fresh MacRuby application, don't change a thing, attempt t

Re: [MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-08 Thread Thomas R. Koll
Hi Daniel, I have those two related to the arch: ARCHS = $(ARCHS_STANDARD_64_BIT) VALID_ARCHS = x86_64 Don't forget that you have to codesign the rbo files, a look into the resulting app's CodeResources will tell you. and welcome to the shop :) Am 09.05.2011 um 02:47 schrieb Daniel Westendorf

[MacRuby-devel] MacRuby Application .pkg install results in Unsupported Architecture

2011-05-08 Thread Daniel Westendorf
Hi all, I'm trying to get my application submitted to the Mac App Store, and I've gotten the following response: *Unsupported Architecture* - Application executables may support either or both of the Intel architectures: - i386 (32-bit) - x86_64 (64-bit) I have specified the Valid Archite