bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: coreutils 6.9.92 fail to configure on *bsd


From: Bruno Haible
Subject: Re: coreutils 6.9.92 fail to configure on *bsd
Date: Sun, 13 Jan 2008 15:10:55 +0100
User-agent: KMail/1.5.4

Hello Elias,

Jim Meyering wrote:
> [cc'ing bug-gnulib, since the test-*frexpl failures come from gnulib]
> >     FAIL: test-frexpl
> >     FAIL: test-printf-frexpl
> 
> Maybe someone else (Bruno Haible?) will look into this part.
> 
> > (*) tested on powerpc-unknown-openbsd4.2, i386-apple-darwin9.1.0

Which platform was that? powerpc-unknown-openbsd4.2?

When these tests fail, they output something. What did they output?

Please also show the contents of <float.h> (in /usr/include, I assume)
and the result of running the following program:

#include <config.h>
#include <float.h>
#include <stdio.h>
int main ()
{
  printf ("LDBL_MANT_DIG = %d\n", LDBL_MANT_DIG);
  printf ("LDBL_DIG = %d\n", LDBL_DIG);
  printf ("LDBL_MIN_EXP = %d\n", LDBL_MIN_EXP);
  printf ("LDBL_MAX_EXP = %d\n", LDBL_MAX_EXP);
  printf ("LDBL_MIN_10_EXP = %d\n", LDBL_MIN_10_EXP);
  printf ("LDBL_MAX_10_EXP = %d\n", LDBL_MAX_10_EXP);
  printf ("sizeof (long double) = %u\n", sizeof (long double));
  printf ("LDBL_EXPBIT0_WORD = %d\n", LDBL_EXPBIT0_WORD);
  printf ("LDBL_EXPBIT0_BIT = %d\n", LDBL_EXPBIT0_BIT);
  return 0;
}


Bruno





reply via email to

[Prev in Thread] Current Thread [Next in Thread]