* 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.
This commit is contained in:
parent
5ea18b5dd9
commit
93df4ec5fe
3 changed files with 10 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue