On Fri, Dec 29, 2006 at 02:12:41PM +0000, travis formoso wrote:
> Hi Ken,
> 
> here is the output of the file from the lines above it - if you need more 
> info let me know - thanks a lot!
 
 (Note for _everybody_ - There's no need to Cc: me on these lists)
> 
> long longval () { return (long) (sizeof (long double)); }
> | unsigned long ulongval () { return (long) (sizeof (long double)); }
> | #include <stdio.h>
> | #include <stdlib.h>
> | int
> | main ()
> | {
> |
> |   FILE *f = fopen ("conftest.val", "w");
> |   if (! f)
> |     exit (1);
> |   if (((long) (sizeof (long double))) < 0)
> |     {
> |       long i = longval ();
> |       if (i != ((long) (sizeof (long double))))
> |       exit (1);
> |       fprintf (f, "%ld\n", i);
> |     }
> |   else
> |     {
> |       unsigned long i = ulongval ();
> |       if (i != ((long) (sizeof (long double))))
> |       exit (1);
> |       fprintf (f, "%lu\n", i);
> |     }
> |   exit (ferror (f) || fclose (f) != 0);
> |
> |   ;
> |   return 0;
> | }
> configure:7509: error: cannot compute sizeof (long double), 77
> See `config.log' for more details.

 Hmm, this isn't wonderfully enlightening.  Possibly, a few more
lines from just *before* this will show the error, maybe a missing
header.  All we can see here is the program source code that failed.

 Also, please don't top post.  Thanks.

Ken
-- 
das eine Mal als Tragödie, das andere Mal als Farce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to