|
From: <cn...@us...> - 2021-01-05 17:59:21
|
Revision: 1128
http://sourceforge.net/p/seq/svn/1128
Author: cn187
Date: 2021-01-05 17:59:19 +0000 (Tue, 05 Jan 2021)
Log Message:
-----------
Add -fprofile-arcs flag when profiling is enabled
Modified Paths:
--------------
showeq/branches/pre_6_0_beta/configure.in
Modified: showeq/branches/pre_6_0_beta/configure.in
===================================================================
--- showeq/branches/pre_6_0_beta/configure.in 2021-01-05 17:07:41 UTC (rev 1127)
+++ showeq/branches/pre_6_0_beta/configure.in 2021-01-05 17:59:19 UTC (rev 1128)
@@ -428,9 +428,9 @@
[ --enable-profiling Compile with profiling data for gprof],
[ case "${enableval}" in
yes) AC_MSG_RESULT(yes);
- USE_PROFILE_C="-pg"
- USE_PROFILE_CXX="-pg"
- PROFILE_LIBS="-pg"
+ USE_PROFILE_C="-pg -fprofile-arcs"
+ USE_PROFILE_CXX="-pg -fprofile-arcs"
+ PROFILE_LIBS="-pg -fprofile-arcs"
ac_cv_showeq_profiling=yes
;;
no) AC_MSG_RESULT(no)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|