diff options
author | Jeff Law <law@redhat.com> | 1993-12-17 05:21:33 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1993-12-17 05:21:33 +0000 |
commit | 93df4ec5fe93fa56de40731ca0021bd5700f5a80 (patch) | |
tree | 7cfc476896a13baf0689687b987f5d04ca57900a | |
parent | 5ea18b5dd9601cc6cecec33d0160a63b051016f8 (diff) | |
download | gdb-93df4ec5fe93fa56de40731ca0021bd5700f5a80.zip gdb-93df4ec5fe93fa56de40731ca0021bd5700f5a80.tar.gz gdb-93df4ec5fe93fa56de40731ca0021bd5700f5a80.tar.bz2 |
* ldmain.c (lprefix): Change default from a char to a string
with only one character.
(lprefix_len): Set default to one.
* ldmain.h (lprefix_len): Declare.
* ldsym.c (write_file_locals): Use strncmp rather than a character
comparison for lprefix.
* emultmpl/m88kbcs.em (before_parse): Set lprefix and lprefix_len
correctly.
* emultmpl/hppaosf.em: Include ldexp.h.
(before_parse): Set lprefix and lprefix_len correctly.
-rw-r--r-- | ld/emultempl/hppaosf.em | 6 | ||||
-rw-r--r-- | ld/emultempl/m88kbcs.em | 5 | ||||
-rw-r--r-- | ld/ldsym.c | 2 |
3 files changed, 10 insertions, 3 deletions
diff --git a/ld/emultempl/hppaosf.em b/ld/emultempl/hppaosf.em index 3bbb945..0bd2318 100644 --- a/ld/emultempl/hppaosf.em +++ b/ld/emultempl/hppaosf.em @@ -29,6 +29,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "config.h" #include "ldemul.h" #include "ldfile.h" +#include "ldexp.h" #include "ldlang.h" #include "ldmisc.h" @@ -43,6 +44,11 @@ extern bfd *output_bfd; static void hppaosf_before_parse() { + extern char *lprefix; + extern unsigned int lprefix_len; + lprefix = "L$"; + lprefix_len = 2; + ldfile_output_architecture = bfd_arch_hppa; } diff --git a/ld/emultempl/m88kbcs.em b/ld/emultempl/m88kbcs.em index a1add23..77b726f 100644 --- a/ld/emultempl/m88kbcs.em +++ b/ld/emultempl/m88kbcs.em @@ -42,8 +42,9 @@ extern char *ldfile_output_machine_name; static void gld${EMULATION_NAME}_before_parse() { - extern char lprefix; - lprefix = '@'; + extern char *lprefix; + lprefix = "@"; + lprefix_len = 1; ldfile_output_architecture = bfd_arch_${ARCH}; } @@ -512,7 +512,7 @@ write_file_locals (output_buffer) { } else if (discard_locals == DISCARD_L && - (p->name[0] == lprefix)) + !strncmp (lprefix, p->name, lprefix_len)) { } else if (p->flags == BSF_WARNING) |