mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-29 22:35:48 +08:00
Makefile.in (LIPO_FOR_TARGET): Define.
* Makefile.in (LIPO_FOR_TARGET): Define. (STRIP_FOR_TARGET): Define. From-SVN: r104840
This commit is contained in:
parent
cc6ac522f9
commit
ed0db39f6d
@ -12,6 +12,9 @@
|
||||
|
||||
2005-09-30 Geoffrey Keating <geoffk@apple.com>
|
||||
|
||||
* Makefile.in (LIPO_FOR_TARGET): Define.
|
||||
(STRIP_FOR_TARGET): Define.
|
||||
|
||||
* config/t-slibgcc-darwin (libgcc_s_%.dylib): Remove old symlinks
|
||||
before creating new ones. Do symlinks before creating the actual
|
||||
targets.
|
||||
|
@ -344,6 +344,7 @@ AR_FOR_TARGET := $(shell \
|
||||
AR_FLAGS_FOR_TARGET =
|
||||
AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
|
||||
AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
|
||||
LIPO_FOR_TARGET = lipo
|
||||
ORIGINAL_AS_FOR_TARGET = @ORIGINAL_AS_FOR_TARGET@
|
||||
RANLIB_FOR_TARGET := $(shell \
|
||||
if [ -f $(objdir)/../binutils/ranlib ] ; then \
|
||||
@ -358,6 +359,16 @@ RANLIB_FOR_TARGET := $(shell \
|
||||
ORIGINAL_LD_FOR_TARGET = @ORIGINAL_LD_FOR_TARGET@
|
||||
ORIGINAL_NM_FOR_TARGET = @ORIGINAL_NM_FOR_TARGET@
|
||||
NM_FOR_TARGET = ./nm
|
||||
STRIP_FOR_TARGET := $(shell \
|
||||
if [ -f $(objdir)/../binutils/strip ] ; then \
|
||||
echo $(objdir)/../binutils/strip ; \
|
||||
else \
|
||||
if [ "$(host)" = "$(target)" ] ; then \
|
||||
echo strip; \
|
||||
else \
|
||||
t='$(program_transform_name)'; echo strip | sed -e $$t ; \
|
||||
fi; \
|
||||
fi)
|
||||
|
||||
# --------
|
||||
# UNSORTED
|
||||
|
Loading…
Reference in New Issue
Block a user