Date: Thu, 17 Sep 1998 18:54:35 +0300 (IDT) From: Eli Zaretskii To: Deathifier cc: djgpp AT delorie DOT com Subject: Re: Proper Command Line parameters for compiling In-Reply-To: <6tqs5s$7r5$1@toto.tig.com.au> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk On Thu, 17 Sep 1998, Deathifier wrote: > The first one is to compile and link with the best stuff for debugging the > program. > > And the second is to compile and link with no debugging stuff for the > smallest possible EXE (Without compression). Use the same set of command-line options, but when you want to omit the debugging symbols, add -s. Since in GCC, debugging and optimizations don't conflict with each other, you don't need any other changes in the compilation options. However, since you are compiling from within RHIDE, I'm curious why are you asking about the ``command-line parameters''?