$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
Subject: Re: [Boost-users] Intel Compiler 11 and Boost 1.39 Bessel functions
From: John Maddock (john_at_[hidden])
Date: 2009-07-20 11:48:22
> If you can narrow down the code that causes the compiler to choke I might
> be
> able to suggest some alternatives though,
I've narrowed the problem down to two lines in bessel.hpp:
- the call to bessel_ik() line 262
- the recursive call to cyl_bessel_imp()
Commenting both of them makes the error disappear. If one of these
lines is compiled, the compiler crashes (don't know why a recursive
call can do that :|)
~~~~~~~~~~~~~~~~~~
Weird, what happens if you compile with -O3 but not -g ?
John.