diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-03-10 19:41:50 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-03-10 19:41:50 +0000 |
| commit | 28b6ade77a8d8a0e8c2ddb3d5efce1c36663e95c (patch) | |
| tree | 90622b517bb35afbf9716eedc95b3251221c24e8 | |
| parent | c683527908cf07bdd013a717871da2545a8dd2d3 (diff) | |
Notes
| -rw-r--r-- | gnu/usr.bin/ld/ld.c | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/gnu/usr.bin/ld/ld.c b/gnu/usr.bin/ld/ld.c index e7dcaba90720..7570ee1e45bf 100644 --- a/gnu/usr.bin/ld/ld.c +++ b/gnu/usr.bin/ld/ld.c @@ -32,7 +32,7 @@ static char sccsid[] = "@(#)ld.c 6.10 (Berkeley) 5/22/91"; Set, indirect, and warning symbol features added by Randy Smith. */ /* - * $Id: ld.c,v 1.24 1995/03/04 17:46:05 nate Exp $ + * $Id: ld.c,v 1.25 1995/03/06 08:00:23 phk Exp $ */ /* Define how to initialize system-dependent header fields. */ @@ -545,16 +545,7 @@ decode_command(argc, argv) p->filename = string; p->local_sym_name = concat("-l", string, ""); p->flags |= E_SEARCH_DIRS; - /* - * XXX: We don't want to link libgcc dynamic, - * it was a big mistake, and now we have to get - * people to stop doing it gracefully - * When all libgcc.so's in the world have been - * killed, this can go away. - */ - if (!strcmp(string,"gcc")) - ; - else if (link_mode & DYNAMIC && !relocatable_output) + if (link_mode & DYNAMIC && !relocatable_output) p->flags |= E_SEARCH_DYNAMIC; p++; } |
