From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5869 invoked by alias); 21 Feb 2002 18:16:23 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 4408 invoked from network); 21 Feb 2002 18:15:43 -0000 Received: from unknown (HELO wh2-19.st.uni-magdeburg.de) (141.44.162.19) by sources.redhat.com with SMTP; 21 Feb 2002 18:15:43 -0000 Received: by wh2-19.st.uni-magdeburg.de (Postfix, from userid 1000) id 7AD089F73; Thu, 21 Feb 2002 19:15:47 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15477.14674.504869.399008@wh2-19.st.uni-magdeburg.de> Date: Thu, 21 Feb 2002 10:28:00 -0000 From: "Claudio Bley" To: Olivier Ricordeau Cc: gcc-help@gcc.gnu.org Subject: Re: problem with fftw (probaly easy to solve) In-Reply-To: <3C74FD75.3070303@wanadoo.fr> References: <3C74FD75.3070303@wanadoo.fr> X-Mailer: VM 6.96 under Emacs 21.1.1 X-SW-Source: 2002-02/txt/msg00212.txt.bz2 >>>>> "Olivier" == Olivier Ricordeau writes: Olivier> Hi all! I'm making a little DSP program that uses the Olivier> FFTW librariy to do Fourier's transforms. I've made a Olivier> #include in my C source code and when I try to Olivier> compile here is what I get: Olivier> ----------------------------------------------------------------------- Olivier> [olivier@localhost c]$ gcc -Wall -ansi -o wav2tab [snip] Olivier> Could someone help me with this problem? It looks like Olivier> the answer is pretty simple but I don't have it :-) You also need to link with the fftw library: gcc -Wall -ansi -o wav2tab wav2tab.c -lfftw Claudio