fftw libraries


 
Thread Tools Search this Thread
Operating Systems OS X (Apple) fftw libraries
# 8  
Old 01-13-2009
the problem is that a .cpp program askes me "ffftw.h" library.
but now I have just remade all and downloaded (just the hundred time) all libraries... and now my cpp program seems working well!!
I can't explain... maybe fink and macports files have added something...

now I will have another check (to be sure).

Sorry for the lost of time but I am afraid of making irreparable mistakes
with my mac.

thank you very very much!

Smilie Smilie Smilie Smilie Smilie Smilie Smilie Smilie Smilie
# 9  
Old 01-13-2009
Well, in order to compile, you must add -I /usr/local/include to the MAkefile or compiler. You must also add -L /usr/local/lib -l fftw or something.
# 10  
Old 01-13-2009
I confirm: it works well.
thank you again.

federico_tn84
# 11  
Old 01-20-2009
The libraries you installed may work, but the applications requiring fftw.h may need some assistance in locating them.

If you installed fftw3, it might be that there is no fftw.h.
Looking at the makeinstall.txt document, you appear to have succeeded in installing fftw3.h

Clearly this is not the name the applications are looking for.

You may have success creating a symlink that points to fftw3.h

cd /usr/local/include/
sudo ln -s fftw3.h fftw.h

If it doesn't solve the problem, then
sudo rm /usr/local/include/fftw.h
# 12  
Old 01-21-2009
thank very much for your help, but my application is working well and
in the directory /usr/local/include/ there is "fftw3.f"
thank you.

federico_tn84
# 13  
Old 01-21-2009
sorry, obviously "fftw3.h" AND "fftw3.f" Smilie
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. High Performance Computing

FFTW - ./configure --enable-mpi error.

Hello I am trying to install fftw3.3.3 on an HPC system. The system has openmpi installed ( though we can choose between a variety of mpi distributions). However, while ./configure step of fftw, there is an error. The relevant section of the output is: checking whether to build shared... (3 Replies)
Discussion started by: abhi34101
3 Replies

2. UNIX for Dummies Questions & Answers

Trying to compile and looking for old libraries

I have been working to install gparted on Centos. Compiling gparted required a number of thing I didn't have, so I downloaded and comilied them as root. After a lot of frustration, I tried using a sript to do it in another directory and removed all of the previously compiled code which was in... (3 Replies)
Discussion started by: brownwrap
3 Replies

3. Programming

I want to know some c libraries

I'm a rookie to C and i'm looking for some libraries to learn,something likes the C++ STL or Boost ,does any1 can tell me some of them?Thanks a lot:) Eric (3 Replies)
Discussion started by: homeboy
3 Replies

4. Shell Programming and Scripting

How to use two different libraries?

Hello, I need to use two different libraries like /usr/local/bin/expect and /usr/bin/ksh at the same script. Is it possible? (4 Replies)
Discussion started by: fozay
4 Replies

5. UNIX for Dummies Questions & Answers

libraries

I am slowly ploughing my way through the list of links to on-line tutorials you provided to newbies. I for one am grateful for such a comprehensive list, so first of all thank you for that. What i cannot seem to find, is information on C++ libraries: The two links on libraries in your list... (0 Replies)
Discussion started by: pil888
0 Replies

6. IP Networking

Libraries

How is Libnet and libpcap are useful in sending a packet through DLL layer and sniff network layer? and how sinffers are used to track ip adresses provided Mac adresses? (1 Reply)
Discussion started by: netsavy
1 Replies

7. Programming

C Libraries??

I can not locate package sys/mkdev.h on HP-UX or Linux. Is it a special package or something? (9 Replies)
Discussion started by: laila63
9 Replies
Login or Register to Ask a Question