X-Authentication-Warning: delorie.com: mail set sender to djgpp-bounces using -f From: =?ISO-8859-15?Q?Hans-Bernhard_Br=F6ker?= Newsgroups: comp.os.msdos.djgpp Subject: Re: DJGGP 2.05 upgrade problems. Date: Fri, 12 Jun 2015 21:35:17 +0200 Lines: 12 Message-ID: References: <201506091712 DOT t59HCPci004068 AT delorie DOT com> <557739E0 DOT 6070608 AT gmail DOT com> <55775E64 DOT 2090901 AT gmail DOT com> <5579ED42 DOT 6070309 AT gmail DOT com> <838ubps7vf DOT fsf AT gnu DOT org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: news.dfncis.de Pzv7VMpSraQizgIcLOh5gADQlmPjZdbQAo3vCd6MtQdC5d1Yn7RcB1XGSf Cancel-Lock: sha1:9I8KGya+XahsXOEQswQcNaXbXrM= User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 In-Reply-To: <838ubps7vf.fsf@gnu.org> Bytes: 1857 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp 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 Am 12.06.2015 um 09:28 schrieb Eli Zaretskii (eliz AT gnu DOT org): > It's usually best to invoke the same GCC command that was used to > compile the offending source file, but with -c replaced with -E and > with output redirected to some *.ii file, and then examine the > preprocessed source near the problematic place. While a method like that is needed for many compilers, GCC has offered a considerably better one since a long time ago: the "-save-temps" option. That will save all the intermediate files, including preprocessor output, of a compile run. I.e. just add -save-temps (or, these days, possibly -save-temps=obj) to your CFLAGS, and go.