diff options
author | Alan Modra <amodra@gmail.com> | 2001-09-29 12:57:54 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2001-09-29 12:57:54 +0000 |
commit | 4818e05fe52eb069d4ae6b306a31b5ecf0e1a6fd (patch) | |
tree | 20bd3d7ae9a352be8c4003ccf8f4b855c3d1891a /ld/ld.h | |
parent | 862517b6506a76ce9dc0e06b8f1d98577371e3b4 (diff) | |
download | gdb-4818e05fe52eb069d4ae6b306a31b5ecf0e1a6fd.zip gdb-4818e05fe52eb069d4ae6b306a31b5ecf0e1a6fd.tar.gz gdb-4818e05fe52eb069d4ae6b306a31b5ecf0e1a6fd.tar.bz2 |
From John Reiser <jreiser@BitWagon.com>
* ldlang.c (lang_common): Conditionally inhibit Common allocation.
* lexsup.c: Add --no-define-common commandline option.
* ldgram.y: Add INHIBIT_COMMON_ALLOCATION script command.
* ldlex.l: Likewise.
* ld.h: Add command_line.inhibit_common_definition.
* ldmain.c (main): Initialize.
* ld.texinfo: Document.
Diffstat (limited to 'ld/ld.h')
-rw-r--r-- | ld/ld.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -102,6 +102,9 @@ typedef struct user_section_struct { typedef struct { /* 1 => assign space to common symbols even if `relocatable_output'. */ boolean force_common_definition; + + /* 1 => do not assign addresses to common symbols. */ + boolean inhibit_common_definition; boolean relax; /* Name of runtime interpreter to invoke. */ |