Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm List-Subscribe: List-Archive: List-Post: List-Help: , Sender: cygwin-owner AT sources DOT redhat DOT com Delivered-To: mailing list cygwin AT sources DOT redhat DOT com Date: Tue, 20 Nov 2001 12:13:53 +0000 Message-ID: <5965-Tue20Nov2001121353+0000-starksb@ebi.ac.uk> X-Mailer: emacs 20.7.1 (via feedmail 9-beta-7 I); VM 6.92 under Emacs 20.7.1 From: David Starks-Browning MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: "vipin aravind" Cc: Subject: Re: gdb trouble In-Reply-To: <00d701c1719c$798a53f0$b90806c0@vipin> References: <00d701c1719c$798a53f0$b90806c0 AT vipin> On Tuesday 20 Nov 01, vipin aravind writes: > oops sorry the executeable was created as a.exe and gdb a worked > How do I get the prefix same as the source file. "man gcc" or "info gcc" will tell you: gcc -o test test.c does what you are asking. BUT DON'T DO THAT!!! Don't create executables called "test" or "test.exe". Unix (and thus Cygwin) has its own version of "test", and you will have trouble getting the right "test" invoked. Choose some other name instead: gcc -o myprog test.c or gcc -o a test.c Regards, David -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Bug reporting: http://cygwin.com/bugs.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/