X-Spam-Check-By: sourceware.org Message-ID: <46A8845B.2080208@cox.net> Date: Thu, 26 Jul 2007 11:24:11 +0000 From: Greg Chicares User-Agent: Thunderbird 1.5.0.10 (Windows/20070221) MIME-Version: 1.0 To: cygwin AT cygwin DOT com Subject: Re: Using 'complex.h' and GCC-3.4.4-3 in Cygwin References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes Mailing-List: contact cygwin-help AT cygwin DOT com; run by ezmlm List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT cygwin DOT com Mail-Followup-To: cygwin AT cygwin DOT com Delivered-To: mailing list cygwin AT cygwin DOT com On 2007-07-26 10:16Z, Angelo Graziosi wrote: > On Cygwin, gcc-3.4.4-3 (curr) fails to compile this simple test case [...] > $ gcc test_complex_h.c > test_complex_h.c:3:21: complex.h: No such file or directory I suppose newlib doesn't provide a full C99 implementation yet. This message would seem to confirm that: http://www.cygwin.com/ml/cygwin/2006-07/msg00758.html > test_complex_h.c: In function `main': > test_complex_h.c:8: error: parse error before "complex" If you change that line this way: - printf("sizeof(%s) = %ld\n", "complex float", sizeof(float complex)); + printf("sizeof(%s) = %ld\n", "complex float", sizeof(float _Complex)); then it compiles, and running it gives sizeof(complex float) = 8 so gcc has some support built in, though the C library doesn't implement the macro defined in C99 7.3.1/2 . It seems to be lacking the complex functions, too: I get undefined reference to `_cexpf' if I try to use cexpf() by providing my own prototype. -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/