mirror of
https://github.com/RPCS3/llvm.git
synced 2024-11-25 04:39:51 +00:00
[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
This commit is contained in:
parent
e60da02281
commit
8b5bee495f
@ -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@
|
||||
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user