aboutsummaryrefslogtreecommitdiff
path: root/ld
diff options
context:
space:
mode:
authorDavid MacKenzie <djm@cygnus>1993-07-03 02:23:22 +0000
committerDavid MacKenzie <djm@cygnus>1993-07-03 02:23:22 +0000
commita04f1d001ec71df71633e85fbeca9354a7014bf1 (patch)
treebf3a7d93a81f27ddfce531e90ad48eba647371d2 /ld
parentff76a7dbf3f970aa7d3138d74035938d0d3ab306 (diff)
downloadgdb-a04f1d001ec71df71633e85fbeca9354a7014bf1.zip
gdb-a04f1d001ec71df71633e85fbeca9354a7014bf1.tar.gz
gdb-a04f1d001ec71df71633e85fbeca9354a7014bf1.tar.bz2
Passing -L. is no longer necessary.
Diffstat (limited to 'ld')
-rw-r--r--ld/ChangeLog2
-rw-r--r--ld/Makefile.in12
2 files changed, 7 insertions, 7 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog
index 8c4857f..adf4faf 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -5,7 +5,7 @@ Fri Jul 2 18:06:05 1993 David J. Mackenzie (djm@thepub.cygnus.com)
* configure.in (ldscripts): Make, instead of emulations.
* Makefile.in (scriptdir): Take off the "ld" part.
(install, clean, distclean): Use ldscripts, not emulations.
- In tests, pass -L., not -Lemulations.
+ In tests, don't pass -Lemulations.
Don't pass tooldir/lib to genscripts.sh.
* genscripts.sh: Don't take tooldir/lib arg.
* ldlang.c (lang_process): Add "ldscripts/" to the name of the
diff --git a/ld/Makefile.in b/ld/Makefile.in
index 6c0b5c0..fd1aaed 100644
--- a/ld/Makefile.in
+++ b/ld/Makefile.in
@@ -312,18 +312,18 @@ installcheck:
# Rules for testing by relinking ld itself.
ld-partial.o: ld.new
- ./ld.new -L. $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
+ ./ld.new $(HOSTING_EMU) -o ld-partial.o -r $(OFILES)
ld1: ld-partial.o
- ./ld.new -L. $(HOSTING_EMU) -o ld1 $(HOSTING_CRT0) ld-partial.o $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
+ ./ld.new $(HOSTING_EMU) -o ld1 $(HOSTING_CRT0) ld-partial.o $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
ld1-full: ld.new
- ./ld.new -L. $(HOSTING_EMU) -o ld1-full $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
+ ./ld.new $(HOSTING_EMU) -o ld1-full $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
ld2: ld1
- ./ld1 -L. $(HOSTING_EMU) -o ld2 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
+ ./ld1 $(HOSTING_EMU) -o ld2 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
ld3: ld2
- ./ld2 -L. $(HOSTING_EMU) -o ld3 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
+ ./ld2 $(HOSTING_EMU) -o ld3 $(HOSTING_CRT0) $(OFILES) $(BFDLIB) $(LIBIBERTY) $(HOSTING_LIBS)
bootstrap: ld3
cmp ld2 ld3
@@ -331,7 +331,7 @@ bootstrap: ld3
# A test program for C++ constructors and destructors.
cdtest: cdtest-main.o cdtest-func.o cdtest-foo.o ld.new
- ./ld.new -L. $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
+ ./ld.new $(HOSTING_EMU) -o cdtest $(HOSTING_CRT0) \
cdtest-main.o cdtest-func.o cdtest-foo.o $(HOSTING_LIBS)
check-cdtest: cdtest $(srcdir)/cdtest.exp