No one has actually tried it to my knowledge, but you could try building two copies (one PPC, one Intel) and then using `lipo -create` to fuse the copies of each library together. The easiest way would be to build on a native i386 and a native PPC machine, but if unavailable I think you could manually do it. For example, to build PPC on Intel, add '-arch ppc' to the gcc flags, and pass ARCH=ppc.darwin to the Makefile.
Or you could just try adding the "-arch i386 -arch ppc" flag to gcc. Unfortunately the latter will undoubtedly barf on the apply hack, so you'll have to disable it. In short, you're on untrodden ground. I'm pretty sure it would be doable, but would require some elbow grease. On Jan 15, 2008 4:06 PM, Heinrich Taube <[EMAIL PROTECTED]> wrote: > hi, since chicken compiles on osx ppc and intel is it possible to > compile it as a universal lib? Im getting ready to ship chicken in an > osx app bundle and this would save some release headaches. > best,rick > > > _______________________________________________ > Chicken-users mailing list > [email protected] > http://lists.nongnu.org/mailman/listinfo/chicken-users > _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
