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 /Makefile.config.in | |
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 'Makefile.config.in')
-rw-r--r-- | Makefile.config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.config.in b/Makefile.config.in index 6d06f16b35..e3bd2a207a 100644 --- a/Makefile.config.in +++ b/Makefile.config.in @@ -258,6 +258,11 @@ ENABLE_WERROR = @ENABLE_WERROR@ #DEBUG_SYMBOLS = 1 @DEBUG_SYMBOLS@ +# When KEEP_SYMBOLS is enabled, installed executables will never have their +# symbols stripped. +#KEEP_SYMBOLS = 1 +@KEEP_SYMBOLS@ + # The compiler flags to use for optimized builds. OPTIMIZE_OPTION := @OPTIMIZE_OPTION@ |