On Thu, Feb 17, 2005 at 05:09:55PM +0800, [EMAIL PROTECTED] wrote: > Hi, there: > I tried using the "-fprofile-arcs" and "-fbranch-probabilities" to build a > profile based optimized binary, but got some complain about the .da files. > ... > The fail message is: > /usr/include/bits/sigset.h: At top level: > /usr/include/bits/sigset.h:119: .da file contents not exhausted > ...failed Cc treeprint.o ...
The most common reason for this message is that you have .da files left over from previous runs, and they have counts for code that no longer exists. In your case you rebuilt with a different set of flags; that might produce similar symptoms. Try removing all the .da files and re-running the program (which will recreate the .da files).