[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
building ddd with the latest tools
From: |
Jeff Sadowski |
Subject: |
building ddd with the latest tools |
Date: |
Thu, 13 Mar 2003 18:20:53 -0700 (MST) |
I have gcc 3.2.2
autoconf 2.57
automake 1.7.2
I modified the CVSMake script
changing the -l to a --include
this seemed to be almost enough
I had to edit the configure file in ddd
(the src dir) there was a mistake in it
I had to copy the libtool from ddd-3.3.1
and the config.h file
and add in
#define HAVE_MKSTEMP 1
in the config.h file
I was then able to compile it.
There were alot of warnings about using outdated calls
I got rid of most of them by switcing from
ostrstream's to ostringstream's
when whanting the char* useing .str().c_str()
and istrstream's with istringstreams
replacing
#include <iostream.h>
with
#include <iostream>
using std::cout;
using std::cerr;
using std::clog;
...
and
basically following what gcc told me
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- building ddd with the latest tools,
Jeff Sadowski <=