diff options
author | David Greene <greened@obbligato.org> | 2009-04-17 14:49:22 +0000 |
---|---|---|
committer | David Greene <greened@obbligato.org> | 2009-04-17 14:49:22 +0000 |
commit | dbefd0c15be7daa3d74a0a9a04a068ea76c641f8 (patch) | |
tree | 1942529b346a76d6e5f75ef291caef493cfea7ba /autoconf | |
parent | 2ee3db3003deb18461a72b82166d8d417925d06f (diff) |
Add a --enable-profiling option to configure to build Debug+Profile and
Opt+Profile tools. Now we can profile any kind of flavor we build.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@69351 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 6441eaa621..59d4fa803d 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -285,6 +285,15 @@ else AC_SUBST(ENABLE_OPTIMIZED,[[ENABLE_OPTIMIZED=1]]) fi +dnl --enable-profiling : check whether they want to do a profile build: +AC_ARG_ENABLE(profiling, AS_HELP_STRING( + [--enable-profiling,Compile with profiling enabled (default is NO)]),,enableval="no") +if test ${enableval} = "no" ; then + AC_SUBST(ENABLE_PROFILING,[[]]) +else + AC_SUBST(ENABLE_PROFILING,[[ENABLE_PROFILING=1]]) +fi + dnl --enable-assertions : check whether they want to turn on assertions or not: AC_ARG_ENABLE(assertions,AS_HELP_STRING( [--enable-assertions,Compile with assertion checks enabled (default is YES)]),, enableval="yes") |