[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Help-gsl] Problem with Brent's method under GSL GnuWin32
From: |
Martin Jansche |
Subject: |
Re: [Help-gsl] Problem with Brent's method under GSL GnuWin32 |
Date: |
Thu, 25 Aug 2005 19:48:25 -0400 |
On 8/24/05, RK <address@hidden> wrote:
> The exact problem is an unresolved external named _finite in
> function_brent_init on linking.
That could be a problem with the underlying C math library. Judging
from the Linux and Solaris man pages, finite() seems to be a
non-standard BSD extension. C99 has isfinite(), but that's not
universally supported yet. I'd say you need to figure out where the
dependency on the symbol _finite is introduced and perhaps replace it
with a call to isfinite() or fpclassify().
-- mj