diff options
author | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-02 22:39:13 +0000 |
---|---|---|
committer | wilson <wilson@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-02-02 22:39:13 +0000 |
commit | 396c97db08c0ef8cc4f2a840a4ca3507a2700fc3 (patch) | |
tree | ca345f59c9625d228ae465f3c42a5163adabf232 /gcc/cross-make | |
parent | 46fb7091c8092cac6e900e00dde411864bf904d2 (diff) | |
download | gcc-396c97db08c0ef8cc4f2a840a4ca3507a2700fc3.tar.gz |
Patch to fix canadian cross build problem with libcpp.a.
* Makefile.in: Change all uses of AR to AR_FOR_TARGET. Change all uses
of HOST_AR to AR. Likewise for AR_FLAGS, RANLIB, and RANLIB_TEST.
(RANLIB_TEST): Test to see if ranlib exists. Only test absolute file
names if host == target.
(HOST_AR, HOST_AR_FLAGS, HOST_RANLIB, HOST_RANLIB_TEST): Delete.
(AR_FLAGS_FOR_TARGET): Renamed from AR_FOR_TARGET_FLAGS.
(AR, AR_FLAGS, OLDAR, OLDAR_FLAGS, RANLIB, RANLIB_TEST): Delete rules
setting them to *_FOR_TARGET.
* cross-make (AR, AR_FLAGS, OLDAR, OLDAR_FLAGS, RANLIB, RANLIB_TEST):
Delete.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@24991 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cross-make')
-rw-r--r-- | gcc/cross-make | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/gcc/cross-make b/gcc/cross-make index 810f5051a63..ec260d8dc39 100644 --- a/gcc/cross-make +++ b/gcc/cross-make @@ -3,14 +3,6 @@ # and gives up immediately if the user has not done so. LIBGCC1 = $(CROSS_LIBGCC1) -# Specify tools and options for manipulating libraries for the target machine. -AR = $(AR_FOR_TARGET) -AR_FLAGS = $(AR_FOR_TARGET_FLAGS) -OLDAR = $(AR_FOR_TARGET) -OLDAR_FLAGS = $(AR_FOR_TARGET_FLAGS) -RANLIB = $(RANLIB_FOR_TARGET) -RANLIB_TEST = $(RANLIB_TEST_FOR_TARGET) - # Dir to search for system headers. Normally /usr/include. # Use CROSS_INCLUDE_DIR not TOOL_INCLUDE_DIR for other vendor's headers. SYSTEM_HEADER_DIR = $(tooldir)/sys-include |