On Wed, Mar 18, 2009 at 11:04 AM, [email protected] <[email protected]> wrote: > I am trying to build a mac universal binary. > env CFLAGS=" -isysroot /Developer/SDKs/MacOSX10.4u.sdk -arch i386 -arch ppc > -mmacosx-version-min=10.4" LDFLAGS="-arch i386 -arch ppc" ./configure
A couple additional comments: With the new built-in universal binary support, you do not need to provide these CFLAGS or LDFLAGS. They will be applied automatically by CS configure if the Apple universal binary SDK is installed. These days, it is considered bad form to set environment variables preceding the configure command. Instead, you should set them as part of the configure invocation. For instance: ./configure FOO=bar COW=moo > --without-java --without-perl --without-python --without-lib3ds > configure: WARNING: unrecognized options: --without-lib3ds You want --without-3ds rather than --without-lib3ds. -- ES ------------------------------------------------------------------------------ Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are powering Web 2.0 with engaging, cross-platform capabilities. Quickly and easily build your RIAs with Flex Builder, the Eclipse(TM)based development software that enables intelligent coding and step-through debugging. Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com _______________________________________________ Crystal-main mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/crystal-main Unsubscribe: mailto:[email protected]?subject=unsubscribe
