From: Robert Hoehne Newsgroups: comp.os.msdos.djgpp Subject: Re: file format question. Date: Tue, 25 Feb 1997 11:13:08 +0100 Organization: TU Chemnitz-Zwickau Lines: 26 Message-ID: <3312BB34.54F1@Mathematik.tu-chemnitz.de> References: <3312508C DOT 4B5 AT post DOT comstar DOT ru> NNTP-Posting-Host: argv.hrz.tu-chemnitz.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Dim Zegebart wrote: > > Hi, > Just a small question. > What is .ii files (I think it's somthing compressed) ? These are preprocessed C++ source files, that means, files which don't need to be preprocessed through cpp before compiling. You can generate such files, if you tell gcc to not delete all the temp files when compiling a source file. Try the following: gcc -c -save-temps foo.cc and you will get (beside other files) the file foo.ii. Robert -- ***************************************************************** * Robert Hoehne, Fakultaet fuer Mathematik, TU-Chemnitz-Zwickau * * Post: Am Berg 3, D-09573 Dittmannsdorf * * e-Mail: Robert DOT Hoehne AT Mathematik DOT TU-Chemnitz DOT DE * * WWW: http://www.tu-chemnitz.de/~rho * *****************************************************************