• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: FFTW on MacBook Pro
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: FFTW on MacBook Pro


  • Subject: Re: FFTW on MacBook Pro
  • From: Steve Baxter <email@hidden>
  • Date: Thu, 12 Apr 2007 00:26:30 +0100

This shell script might be useful to you, it does the right things to build a universal FFTW lib:

#! /bin/sh

# Script to build a universal binary of FFTW3. Copy this into the FFTW distribution directory
# and run it from there to use it, outputs libfftw3f.a
#
# You will need to execute chmod +x "BuildFFTW.sh" to run the script
#
# For more information see this very useful link:
#
# http://developer.apple.com/technotes/tn2005/tn2137.html


# Configure for i386
./configure CFLAGS="-arch i386" --with-combined-threads --enable- float --enable-sse --enable-threads


# Clean
make clean

# Make
make

# Rename library
mv .libs/libfftw3f.a ./libfftw3f-i386.a

# Configure for ppc
./configure CFLAGS="-arch ppc" --with-combined-threads --enable-float --enable-altivec --enable-threads --with-gcc-arch=G5


# Clean
make clean

# Make
make

# Rename library
mv .libs/libfftw3f.a ./libfftw3f-ppc.a

# lipo everything together
lipo -create libfftw3f-i386.a libfftw3f-ppc.a -output libfftw3f.a

Cheers,

Steve

On 8 Apr 2007, at 23:50, Wesley Smith wrote:

just download it and make it on OSX.  It's quite painless.  Make sure
you set the proper float configure flag depending on whether you need
libfftw.a or libfftwf.a (doubles and floats).

wes

On 4/8/07, James T. Rogers <email@hidden> wrote:
I have an application that I want to try and it would require FFTW.
FFTW is currently running on Linux and I am wondering if I used
MacPorts could I bring it up on OS X? I am using an Intel MacBook Pro.
_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
40gmail.com


This email sent to email@hidden

_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list (email@hidden)
Help/Unsubscribe/Update your Subscription:
40improvision.com


This email sent to email@hidden

Steve Baxter Software Development Manager Improvision +44-2476-692229

Image Processing and Vision Company Limited (trading as Improvision) is a company registered in England and Wales with company number 2505778. VAT number GB536188722.



_______________________________________________
Do not post admin requests to the list. They will be ignored.
Xcode-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >FFTW on MacBook Pro (From: "James T. Rogers" <email@hidden>)
 >Re: FFTW on MacBook Pro (From: "Wesley Smith" <email@hidden>)

  • Prev by Date: Re: changed header doesn't trigger rebuild
  • Next by Date: SenTestCase order?
  • Previous by thread: Re: FFTW on MacBook Pro
  • Next by thread: Xcode problem before building
  • Index(es):
    • Date
    • Thread