Re: Cant get Quantlib to work with fedora 5 and gcc 4.1.1

Posted by Luigi Ballabio on
URL: http://quantlib.414.s1.nabble.com/Cant-get-Quantlib-to-work-with-fedora-5-and-gcc-4-1-1-tp5020p5023.html

On Fri, 2006-09-08 at 07:51 -0700, Max Giolitti wrote:
> Thank you Eric. (ccing all the alias) I am using 0.3.13 (although yum
> says .14...) for boost I am using the version in fedora or the 33, i
> tried both.
> This is the error:
> In file included from /usr/include/boost/config.hpp:40,
>                  from /usr/include/ql/qldefines.hpp:28,
>                  from QL.c:18:
> /usr/include/boost/config/select_stdlib_config.hpp:20:19: error:
> utility: No such file or directory

Strange. <utility> is a standard header---it should come with your
compiler. What happens if you write a simple file, say,

======test.cpp====
#include <utility>

int main() { return 0; }
==================

and execute `g++ test.cpp` from a shell?

Later,
        Luigi



----------------------------------------

The purpose of abstraction is not to be vague, but to create a new
semantic level in which one can be absolutely precise.
-- W.E. Dijkstra