[Oorexx-devel] Universal Binary

2010-04-18 Thread CVBruce
Hi, I'm having trouble creating a universal binary for Mac OS X. Each of the individual binaries (x86_64, i386 and ppc), individually pass testOORexx.rex, but when I glue them together with lipo, I get problems. Rxapi seems to execute, and it selects an appropriate architecture

Re: [Oorexx-devel] Universal Binary

2010-04-18 Thread Rick McGuire
On Sun, Apr 18, 2010 at 12:02 PM, CVBruce cvbr...@gmail.com wrote: Hi, I'm having trouble creating a universal binary for Mac OS X.  Each of the individual binaries (x86_64, i386 and ppc), individually pass testOORexx.rex, but when I glue them together with lipo, I get problems.  Rxapi seems

Re: [Oorexx-devel] Universal Binary

2010-04-18 Thread CVBruce
Ok, then let me try making an intel with both 32bit and 64bit architectures and see if that works. If not, it looks like one installer for each architecture. Or perhaps an installer that checks the architecture and installs just those components. Bruce On Apr 18, 2010, at 9:39 AM, Rick

Re: [Oorexx-devel] Universal Binary

2010-04-18 Thread Rick McGuire
The rexx.img file can't be shared between 32- and 64-bit versions either. The layout of the C++ classes are not compatible. Rick On Sun, Apr 18, 2010 at 12:51 PM, CVBruce cvbr...@gmail.com wrote: Ok, then let me try making an intel with both 32bit and 64bit architectures and see if that

Re: [Oorexx-devel] Universal Binary

2010-04-18 Thread Mark Miesfeld
On Sun, Apr 18, 2010 at 9:02 AM, CVBruce cvbr...@gmail.com wrote: I'm having trouble creating a universal binary for Mac OS X.  Each of the individual binaries (x86_64, i386 and ppc), individually pass ... One of the things that bothered my when I was linking the various architecture together

Re: [Oorexx-devel] Universal Binary

2010-04-18 Thread CVBruce
Ok, thanks for saving me the time to test it. Ideally, I should package this as a meta package, with three installer packages, the meta package would determine which of the three packages to install. I'll have to figure out if I can do this. Bruce On Apr 18, 2010, at 9:53 AM, Rick McGuire