In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/278372729622ff1b3dfc1ecbf1efe8abb7f5b3fa?hp=82e235474c3b2fa7c9c69c85c23e860d59851685>
- Log ----------------------------------------------------------------- commit 278372729622ff1b3dfc1ecbf1efe8abb7f5b3fa Author: Ãvar Arnfjörð Bjarmason) (via RT <[email protected]> Date: Sun Jul 25 06:13:11 2010 -0700 perlhack: Add -Dusedevel to gcov Configure line # New Ticket Created by (Ãvar Arnfjörð Bjarmason) # Please include the string: [perl #76710] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=76710 > Building blead doesn't work without -Dusedevel most of the time. M pod/perlhack.pod commit 5928bbfbc13c0a60b3006ae0a3c16f91c1daaf76 Author: Ãvar Arnfjörð Bjarmason) (via RT <[email protected]> Date: Sun Jul 25 06:13:13 2010 -0700 gitignore: Ignore gcov files # New Ticket Created by (Ãvar Arnfjörð Bjarmason) # Please include the string: [perl #76712] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=76712 > Ignore the gcov files that are generated when following "GCC gcov Profiling" in perlhack. M .gitignore ----------------------------------------------------------------------- Summary of changes: .gitignore | 5 +++++ pod/perlhack.pod | 3 ++- 2 files changed, 7 insertions(+), 1 deletions(-) diff --git a/.gitignore b/.gitignore index bbc6389..a95bc21 100644 --- a/.gitignore +++ b/.gitignore @@ -61,6 +61,11 @@ Makefile.old *.res *.RES +# gcov build products. see L<perlhack/"GCC gcov Profiling"> +*.gcov +*.gcda +*.gcno + dll.base /ext/DynaLoader/dl_win32.xs splittree.pl diff --git a/pod/perlhack.pod b/pod/perlhack.pod index 844b83b..34da25f 100644 --- a/pod/perlhack.pod +++ b/pod/perlhack.pod @@ -3115,7 +3115,8 @@ and its section titled "8. gcov: a Test Coverage Program" quick hint: - $ sh Configure -des -Doptimize='-g' -Accflags='-fprofile-arcs -ftest-coverage' \ + $ sh Configure -des -Dusedevel -Doptimize='-g' \ + -Accflags='-fprofile-arcs -ftest-coverage' \ -Aldflags='-fprofile-arcs -ftest-coverage' && make perl.gcov $ rm -f regexec.c.gcov regexec.gcda $ ./perl.gcov -- Perl5 Master Repository
