help-gplusplus
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: C++ precompiled header


From: Bernd Strieder
Subject: Re: C++ precompiled header
Date: Fri, 26 Aug 2005 17:49:31 +0200
User-agent: KNode/0.9.2

Hello,

Greg wrote:
> Is there any good way of verifying that a precompiled file is in fact
> being used?  I looked through the g++ man page to find any relevent
> debbuging/dumping options but couldn't find anything that apply.
> Thanks in advance for any help.

Run strace on the compiler like

strace -f -e open g++ <g++-command-line> 2>strace.log

You will get every file that is being tried to open, whether it
succeeded or not, so you will have to search.

Bernd Strieder



reply via email to

[Prev in Thread] Current Thread [Next in Thread]