diff options
author | Nick Kledzik <kledzik@apple.com> | 2011-06-20 23:47:02 +0000 |
---|---|---|
committer | Nick Kledzik <kledzik@apple.com> | 2011-06-20 23:47:02 +0000 |
commit | 372922557673be8846669c0ea5f8e3baea552f1c (patch) | |
tree | 341291857423ed5b0af78a1388124251434b021d /compiler-rt | |
parent | 0a9d652331536d32d06e5b98f74dc7abcec5a18d (diff) | |
download | bcm5719-llvm-372922557673be8846669c0ea5f8e3baea552f1c.tar.gz bcm5719-llvm-372922557673be8846669c0ea5f8e3baea552f1c.zip |
add STRIP and LIPO as AvailableOptions
llvm-svn: 133481
Diffstat (limited to 'compiler-rt')
-rw-r--r-- | compiler-rt/make/lib_info.mk | 3 | ||||
-rw-r--r-- | compiler-rt/make/options.mk | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/compiler-rt/make/lib_info.mk b/compiler-rt/make/lib_info.mk index 72bc4a17f15..095b1e8ab58 100644 --- a/compiler-rt/make/lib_info.mk +++ b/compiler-rt/make/lib_info.mk @@ -48,4 +48,5 @@ AvailableOptions := AR ARFLAGS \ CC CFLAGS FUNCTIONS OPTIMIZED \ RANLIB RANLIBFLAGS \ VISIBILITY_HIDDEN \ - KERNEL_USE + KERNEL_USE \ + STRIP LIPO diff --git a/compiler-rt/make/options.mk b/compiler-rt/make/options.mk index f6a331bf0f5..f695fc8db71 100644 --- a/compiler-rt/make/options.mk +++ b/compiler-rt/make/options.mk @@ -31,3 +31,6 @@ ARFLAGS := cru 2> /dev/null RANLIB := ranlib # FIXME: Remove these pipes once ranlib errors are fixed. RANLIBFLAGS := 2> /dev/null + +STRIP := strip +LIPO := lipo |