From: "Ed Wallace" Organization: Northrop Grumman ESSD To: djgpp AT delorie DOT com Date: Mon, 20 Oct 1997 16:39:18 EDT Subject: compiling C++ with -a switch Message-ID: <8878ADA6D7A@ami1.md.essd.northgrum.com> Precedence: bulk I'm trying to compile a program using the -a option so that I can automate branch coverage of my program when testing it. There should be a bb.out file produced when the program is run but there isn't. Does anyone know what I'm doing wrong? I compile with : GCC -c -g -a filename I link with : GCC -a -o filename.exe filename.o -lm ps: using -pg switch works ok.