Re: ddd can't find init.c at startup

2002-08-19 Thread John Ward
Big Brother will get back to you - Original Message - From: "Mike Landis" <[EMAIL PROTECTED]> To: "John Ward" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Sunday, August 18, 2002 6:52 AM Subject: ddd can't find init.c at startup >

init.c Solution

2001-10-11 Thread John Ward
The init.c problem puzzled me for a while, however you are missing one simple ingredient, this is how I got round it: Ensure you have ddd installed correctly, i.e. when you type ddd on it's own ddd runs. Then simply compile you C++ program using g++ with the -g (debug) flag, i.e.: $ g++ -g -o mai

The init.c problem puzzled me for a while, however you are missing one simple ingredient Ensure you have ddd installed correctly, i.e. when you type ddd on it's own ddd runs. Then simply compile you C++ program using g++ with the -g flag, i.e.: g++ -g -o main main.init.c Solution

2001-10-11 Thread John Ward
-g -o main main.cc then enter: $ ddd main This should work... init.c is the function which runs your program, i.e. it calls main() (presumably when your using debug information), this is contained within the g++ (or c++) libraries. Regards John ~~ John Ward E-Mail: [