diff options
author | Eric Christopher <echristo@apple.com> | 2011-10-26 00:52:13 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2011-10-26 00:52:13 +0000 |
commit | f3a5ba548f7cd890d428c76565300d1c1b687981 (patch) | |
tree | e82caefc0ed92b5aafbf4d36d29f45c7739b815c /autoconf | |
parent | 360fa9a29d65b6c9b69fb2ba9712d69098cfca13 (diff) |
Search for and use the strip program and pass it to install for it
to use for stripping final executables.
Patch by Simon Atanasyan!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@142997 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'autoconf')
-rw-r--r-- | autoconf/configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/autoconf/configure.ac b/autoconf/configure.ac index 89f846749c..89714dd31f 100644 --- a/autoconf/configure.ac +++ b/autoconf/configure.ac @@ -897,6 +897,7 @@ AC_PATH_PROG(MKDIR,[mkdir],[mkdir]) AC_PATH_PROG(MV, [mv], [mv]) AC_PROG_RANLIB AC_CHECK_TOOL(AR, ar, false) +AC_CHECK_TOOL(STRIP,[strip], false) AC_PATH_PROG(RM, [rm], [rm]) AC_PATH_PROG(SED, [sed], [sed]) AC_PATH_PROG(TAR, [tar], [gtar]) |