X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f Date: Mon, 2 May 2005 11:55:45 -0400 Message-Id: <200505021555.j42FtjXb006027@envy.delorie.com> From: DJ Delorie To: djgpp AT delorie DOT com In-reply-to: <42764B12.8495F94D@yahoo.com> (message from CBFalconer on Mon, 02 May 2005 15:44:27 GMT) Subject: Re: gcc -MM output References: <42764B12 DOT 8495F94D AT yahoo 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 > id2id.o: id2id.c c:/djgpp/lib/gcc-lib/djgpp/3.21/djgpp.ver > hashlib.h > > and the question is: Why the djgpp.ver reference? First off, the gcc specs tell gcc to forcibly include that file for each compile. That's where you get symbols like __DJGPP_MINOR__ and such. Second, I don't know why gcc is treating it like a user include; it should be a system include. Try using "gcc -v -MM ..." and see what command option it's using, and see if there's an alternate that gets rid of that entry.