What version of the product are you using? On what operating system?
CUDPP 1.1, gcc 4.3.3-5ubuntu4 on Ubuntu 9.04 x64
Please provide any additional information below.
Building CUDPP 1.1 did not work out-of-the-box for me, and I believe
that some includes that should have been there are missing:
$ cudpp_1.1 cd common
$ common make
[...]
./../common/inc/cmd_arg_reader.h:417: error: must #include <typeinfo>
before using typeid
[...]
src/cutil.cpp:620: error: ‘strlen’ was not declared in this scope
[...]
To fix these:
in cmd_arg_reader.h
#include <typeinfo>
and in cutil.cpp
#include <cstring>
$ common make
[...]
./../common/inc/exception.h:89: error: ‘EXIT_FAILURE’ was not declared
in this scope
[...]
To fix:
#include <cstdlib>
in exception.h
Original issue reported on code.google.com by andre.r....@gmail.com on 13 Aug 2009 at 9:52
Original issue reported on code.google.com by
andre.r....@gmail.com
on 13 Aug 2009 at 9:52