diff options
author | Daniel Dunbar <daniel@zuster.org> | 2012-08-14 18:14:20 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2012-08-14 18:14:20 +0000 |
commit | 8b5bee495f8ffcaad8f8b24f93b10c674d84f0e5 (patch) | |
tree | 9a145e1fab6ad39fdeb56cb84aa5d0aae0e8f9e4 /autoconf | |
parent | e60da02281d9de3aec4b22924b6cf1bd1a83af0c (diff) |
[configure] Add a --enable-keep-symbols configure flag.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161880 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 4dde3a6dfa..7fa883e9cc 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -542,6 +542,15 @@ else AC_SUBST(DEBUG_SYMBOLS,[[DEBUG_SYMBOLS=1]]) fi +dnl --enable-keep-symbols : do not strip installed executables +AC_ARG_ENABLE(keep-symbols, + AS_HELP_STRING(--enable-keep-symbols,[Do not strip installed executables)]),,enableval=no) +if test ${enableval} = "no" ; then + AC_SUBST(KEEP_SYMBOLS,[[]]) +else + AC_SUBST(KEEP_SYMBOLS,[[KEEP_SYMBOLS=1]]) +fi + dnl --enable-jit: check whether they want to enable the jit AC_ARG_ENABLE(jit, AS_HELP_STRING(--enable-jit, |