Date: Mon, 06 Aug 2001 21:25:27 +0300 From: "Eli Zaretskii" Sender: halo1 AT zahav DOT net DOT il To: sterten AT aol DOT com (Sterten) Message-Id: <9003-Mon06Aug2001212527+0300-eliz@is.elta.co.il> X-Mailer: Emacs 20.6 (via feedmail 8.3.emacs20_6 I) and Blat ver 1.8.9 CC: djgpp AT delorie DOT com In-reply-to: <20010806123736.09050.00002898@mb-ma.aol.com> (sterten@aol.com) Subject: Re: assembly translation of a single C-command References: <20010806123736 DOT 09050 DOT 00002898 AT mb-ma DOT aol DOT com> Reply-To: djgpp AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > From: sterten AT aol DOT com (Sterten) > Newsgroups: comp.os.msdos.djgpp > Date: 06 Aug 2001 16:37:36 GMT > > >On 5 Aug 2001, Sterten wrote: > > > >> BTW. , is 2.03 the most recent version for DOS ? > > > >V2.03 is the version of the DJGPP library, not of GCC. The last version > >of GCC available for DOS is 2.95.3. > > does it run without the DJGPP library ? GCC doesn't need the library to run, but you do need the library to compile most programs, in practice (although it _is_ possible to build stand-alone programs which don't use neither the header files nor the library). > Hmm, stands GPP for C++ ? The canonical meaning of DJGPP is "DJ's GNU Programming Platform". See http://www.delorie.com/djgpp/ for more info. > >Try -gstabs+ instead of -g, it might help. > > yes, that's better. It's still hard to figure out, what GCC is doing. > most operations are executed on the stack If you want to look at the code produced by GCC, you need to have some knowledge in compilers and x86 assembly.