diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-11-09 17:48:24 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-11-09 17:48:24 +0000 |
commit | 809391bd0ab1443e76b99502a55f8fef5267fb0a (patch) | |
tree | 1b4d6c815dd12cc54347565121484cba0ed23be0 /ld | |
parent | cd1d4f83e73e16e656c952bd14001f105fc4d412 (diff) | |
download | gdb-809391bd0ab1443e76b99502a55f8fef5267fb0a.zip gdb-809391bd0ab1443e76b99502a55f8fef5267fb0a.tar.gz gdb-809391bd0ab1443e76b99502a55f8fef5267fb0a.tar.bz2 |
* ldlang.c (lang_one_common): Set SEC_ALLOC in any section where
we allocate common symbols.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/ldlang.c | 3 |
2 files changed, 8 insertions, 0 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 119e7e8..7374fc1 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 9 12:47:11 1994 Ian Lance Taylor <ian@sanguine.cygnus.com> + + * ldlang.c (lang_one_common): Set SEC_ALLOC in any section where + we allocate common symbols. + Tue Nov 8 17:50:43 1994 Eric Youngdale (eric@aib.com) * scripttempl/elf.sc: Add .rel.init, .rela.init, .rel.fini, and diff --git a/ld/ldlang.c b/ld/ldlang.c index 9643c28..759e9fc 100644 --- a/ld/ldlang.c +++ b/ld/ldlang.c @@ -2260,6 +2260,9 @@ lang_one_common (h, info) /* Increase the size of the section. */ section->_raw_size += size; + /* Make sure the section is allocated in memory. */ + section->flags |= SEC_ALLOC; + if (config.map_file != NULL) fprintf (config.map_file, "Allocating common %s: %lx at %lx %s\n", h->root.string, (unsigned long) size, |