In message: <[EMAIL PROTECTED]>
            Kenneth Culver <[EMAIL PROTECTED]> writes:
: I don't think kde3 compiles on the latest -CURRENT though, I've been
: trying to compile that for several days, and every time the linker says
: that things like cout and other standard c++ things aren't found.

The cerr not found thing is one of two problems.  gcc3 is pickier
about namespace issues than gcc2, so you need to say std::cerr or
using namespace std;.  However, the more common case is people
thinking they can link c++ programs with 'cc' rather than 'c++'

My C++ programs are large enough that there are issues, but nothing
this trivial.  Usually it is bad C++ that the newer compiler is
pickier about accepting.

Warner

To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-current" in the body of the message

Reply via email to