2000-03-06 19:08:38 +01:00
|
|
|
/* Linker file opening and searching.
|
2004-01-03 12:09:07 +01:00
|
|
|
Copyright 1991, 1992, 1993, 1994, 1995, 1998, 1999, 2000, 2001, 2002,
|
2010-01-21 11:31:32 +01:00
|
|
|
2003, 2004, 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-06 16:09:45 +02:00
|
|
|
This file is part of the GNU Binutils.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-06 16:09:45 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
2003-03-25 11:29:28 +01:00
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-06 16:09:45 +02:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-07-06 16:09:45 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
2003-03-25 11:29:28 +01:00
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-03-25 11:29:28 +01:00
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-06 16:09:45 +02:00
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#include "sysdep.h"
|
2007-04-26 16:47:00 +02:00
|
|
|
#include "bfd.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "bfdlink.h"
|
2001-09-19 07:33:36 +02:00
|
|
|
#include "safe-ctype.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "ld.h"
|
|
|
|
#include "ldmisc.h"
|
|
|
|
#include "ldexp.h"
|
|
|
|
#include "ldlang.h"
|
|
|
|
#include "ldfile.h"
|
|
|
|
#include "ldmain.h"
|
2002-10-30 04:57:39 +01:00
|
|
|
#include <ldgram.h>
|
1999-05-03 09:29:11 +02:00
|
|
|
#include "ldlex.h"
|
|
|
|
#include "ldemul.h"
|
2001-05-02 18:42:55 +02:00
|
|
|
#include "libiberty.h"
|
2003-03-25 11:29:28 +01:00
|
|
|
#include "filenames.h"
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-03-25 11:29:28 +01:00
|
|
|
const char * ldfile_input_filename;
|
|
|
|
bfd_boolean ldfile_assumed_script = FALSE;
|
|
|
|
const char * ldfile_output_machine_name = "";
|
1999-05-03 09:29:11 +02:00
|
|
|
unsigned long ldfile_output_machine;
|
|
|
|
enum bfd_architecture ldfile_output_architecture;
|
2003-03-25 11:29:28 +01:00
|
|
|
search_dirs_type * search_head;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
#ifdef VMS
|
2005-04-29 01:54:33 +02:00
|
|
|
static char * slash = "";
|
1999-05-03 09:29:11 +02:00
|
|
|
#else
|
|
|
|
#if defined (_WIN32) && ! defined (__CYGWIN32__)
|
2005-04-29 01:54:33 +02:00
|
|
|
static char * slash = "\\";
|
1999-05-03 09:29:11 +02:00
|
|
|
#else
|
2005-04-29 01:54:33 +02:00
|
|
|
static char * slash = "/";
|
1999-05-03 09:29:11 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2003-03-25 11:29:28 +01:00
|
|
|
typedef struct search_arch
|
|
|
|
{
|
2000-09-29 13:18:18 +02:00
|
|
|
char *name;
|
1999-05-03 09:29:11 +02:00
|
|
|
struct search_arch *next;
|
|
|
|
} search_arch_type;
|
|
|
|
|
2003-03-25 11:29:28 +01:00
|
|
|
static search_dirs_type **search_tail_ptr = &search_head;
|
1999-05-03 09:29:11 +02:00
|
|
|
static search_arch_type *search_arch_head;
|
|
|
|
static search_arch_type **search_arch_tail_ptr = &search_arch_head;
|
2000-09-29 13:18:18 +02:00
|
|
|
|
2003-03-25 11:29:28 +01:00
|
|
|
/* Test whether a pathname, after canonicalization, is the same or a
|
|
|
|
sub-directory of the sysroot directory. */
|
|
|
|
|
|
|
|
static bfd_boolean
|
2003-06-28 07:28:54 +02:00
|
|
|
is_sysrooted_pathname (const char *name, bfd_boolean notsame)
|
2003-03-25 11:29:28 +01:00
|
|
|
{
|
|
|
|
char * realname = ld_canon_sysroot ? lrealpath (name) : NULL;
|
|
|
|
int len;
|
|
|
|
bfd_boolean result;
|
|
|
|
|
|
|
|
if (! realname)
|
|
|
|
return FALSE;
|
2004-01-03 12:09:07 +01:00
|
|
|
|
2003-03-25 11:29:28 +01:00
|
|
|
len = strlen (realname);
|
|
|
|
|
|
|
|
if (((! notsame && len == ld_canon_sysroot_len)
|
|
|
|
|| (len >= ld_canon_sysroot_len
|
|
|
|
&& IS_DIR_SEPARATOR (realname[ld_canon_sysroot_len])
|
|
|
|
&& (realname[ld_canon_sysroot_len] = '\0') == '\0'))
|
|
|
|
&& FILENAME_CMP (ld_canon_sysroot, realname) == 0)
|
|
|
|
result = TRUE;
|
|
|
|
else
|
|
|
|
result = FALSE;
|
|
|
|
|
|
|
|
if (realname)
|
|
|
|
free (realname);
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-03-31 20:13:25 +02:00
|
|
|
/* Adds NAME to the library search path.
|
|
|
|
Makes a copy of NAME using xmalloc(). */
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
void
|
2003-06-28 07:28:54 +02:00
|
|
|
ldfile_add_library_path (const char *name, bfd_boolean cmdline)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
Updated sources to avoid using the identifier name "new", which is a
keyword in c++.
* bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol.
* bfd/coffgen.c (coff_make_empty_symbol)
(coff_bfd_make_debug_symbol): Rename variable new to new_symbol.
* bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable
new to new_insn.
* bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to
new_d.
* bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument
new to new_reloc.
* bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string.
* bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to
new_symbol.
* bfd/linker.c (bfd_new_link_order): Rename variable new to
new_lo.
* bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to
symbol.
* bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol_type.
* bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to
new_dump.
(read_hdr, rs6000coff_core_p)
(rs6000coff_core_file_matches_executable_p)
(rs6000coff_core_file_failing_command)
(rs6000coff_core_file_failing_signal): Updated function to use new
union member name.
* bfd/som.c (som_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename
variable new to new_symbol.
* binutils/nlmconv.c (main): Rename variable new to new_name.
* gas/config/tc-arm.c (insert_reg_alias): Rename variable new to
new_reg.
* gas/config/tc-dlx.c (parse_operand): Rename variable new to
new_pos.
* gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
new to newr.
* gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable
new to new_pointer.
* gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got):
Change name from new to new_pointer.
* gas/config/tc-or32.c (parse_operand): Rename variable new to
new_pointer.
* gas/config/tc-pdp11.c (md_assemble): Rename variable new to
new_pointer.
* gas/config/tc-pj.c (alias): Change argument new to new_name.
* gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable
new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
new to new_i2n. (s3_convert): Rename variables old and new to
r_old and r_new.
* gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
variables old and new to r_old and r_new.
* gas/config/tc-sh.c (parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
to new_pointer.
* gas/config/tc-z8k.c (parse_exp): Rename variable new to
new_pointer.
* gas/listing.c (listing_newline): Rename variable new to new_i.
* ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop)
(exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new
to new_e.
* ld/ldfile.c (ldfile_add_library_path): Rename variable new to
new_dirs. (ldfile_add_arch): Rename variable new to new_arch.
* ld/ldlang.c (new_statement, lang_final, lang_add_wild)
(lang_target, lang_add_fill, lang_add_data, lang_add_assignment)
(lang_add_insert): Rename variable new to new_stmt. (new_afile):
Added missing cast. (lang_memory_region_lookup): Rename variable
new to new_region. (init_os): Rename variable new to
new_userdata. (lang_add_section): Rename variable new to
new_section. (ldlang_add_undef): Rename variable new to
new_undef. (realsymbol): Rename variable new to new_name.
* opcodes/z8kgen.c (internal, gas): Rename variable new to new_op.
Updated sources to avoid using the identifier name "template",
which is a keyword in c++.
* bfd/elf32-arm.c (struct stub_def): Rename member template to
template_sequence. (arm_build_one_stub,
find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub):
Rename variable template to template_sequence.
* bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl):
Rename variable template to template_val.
* gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct
asm_barrier_opt): Change member template to
template_name. (md_begin): Update code to reflect new member
names.
* gas/config/tc-i386.c (struct templates, struct _i386_insn)
(match_template, cpu_flags_match, match_reg_size, match_mem_size)
(operand_size_match, md_begin, i386_print_statistics, pi)
(build_vex_prefix, md_assemble, parse_insn, optimize_imm)
(optimize_disp): Updated code to use new names. (parse_insn):
Added casts.
* gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated
code to use new names.
* gas/config/tc-score.c (struct s3_asm_opcode): Renamed member
template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member
template to template_name. (s7_parse_16_32_inst,
s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-tic30.c (md_begin, struct tic30_insn)
(md_assemble): Update code to use new names.
* gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin)
(optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
Update code to use new names.
* include/opcode/tic30.h (template): Rename type template to
insn_template. Updated code to use new name.
* include/opcode/tic54x.h (template): Rename type template to
insn_template.
* opcodes/cris-dis.c (bytes_to_skip): Update code to use new name.
* opcodes/i386-dis.c (putop): Update code to use new name.
* opcodes/i386-gen.c (process_i386_opcodes): Update code to use
new name.
* opcodes/i386-opc.h (struct template): Rename struct template to
insn_template. Update code accordingly.
* opcodes/i386-tbl.h (i386_optab): Update type to use new name.
* opcodes/ia64-dis.c (print_insn_ia64): Rename variable template
to template_val.
* opcodes/tic30-dis.c (struct instruction, get_tic30_instruction):
Update code to use new name.
* opcodes/tic54x-dis.c (has_lkaddr, get_insn_size)
(print_parallel_instruction, print_insn_tic54x, tic54x_get_insn):
Update code to use new name.
* opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab):
Update type to new name.
2009-08-30 00:11:02 +02:00
|
|
|
search_dirs_type *new_dirs;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2001-11-02 02:13:09 +01:00
|
|
|
if (!cmdline && config.only_cmd_line_lib_dirs)
|
|
|
|
return;
|
|
|
|
|
Updated sources to avoid using the identifier name "new", which is a
keyword in c++.
* bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol.
* bfd/coffgen.c (coff_make_empty_symbol)
(coff_bfd_make_debug_symbol): Rename variable new to new_symbol.
* bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable
new to new_insn.
* bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to
new_d.
* bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument
new to new_reloc.
* bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string.
* bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to
new_symbol.
* bfd/linker.c (bfd_new_link_order): Rename variable new to
new_lo.
* bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to
symbol.
* bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol_type.
* bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to
new_dump.
(read_hdr, rs6000coff_core_p)
(rs6000coff_core_file_matches_executable_p)
(rs6000coff_core_file_failing_command)
(rs6000coff_core_file_failing_signal): Updated function to use new
union member name.
* bfd/som.c (som_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename
variable new to new_symbol.
* binutils/nlmconv.c (main): Rename variable new to new_name.
* gas/config/tc-arm.c (insert_reg_alias): Rename variable new to
new_reg.
* gas/config/tc-dlx.c (parse_operand): Rename variable new to
new_pos.
* gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
new to newr.
* gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable
new to new_pointer.
* gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got):
Change name from new to new_pointer.
* gas/config/tc-or32.c (parse_operand): Rename variable new to
new_pointer.
* gas/config/tc-pdp11.c (md_assemble): Rename variable new to
new_pointer.
* gas/config/tc-pj.c (alias): Change argument new to new_name.
* gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable
new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
new to new_i2n. (s3_convert): Rename variables old and new to
r_old and r_new.
* gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
variables old and new to r_old and r_new.
* gas/config/tc-sh.c (parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
to new_pointer.
* gas/config/tc-z8k.c (parse_exp): Rename variable new to
new_pointer.
* gas/listing.c (listing_newline): Rename variable new to new_i.
* ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop)
(exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new
to new_e.
* ld/ldfile.c (ldfile_add_library_path): Rename variable new to
new_dirs. (ldfile_add_arch): Rename variable new to new_arch.
* ld/ldlang.c (new_statement, lang_final, lang_add_wild)
(lang_target, lang_add_fill, lang_add_data, lang_add_assignment)
(lang_add_insert): Rename variable new to new_stmt. (new_afile):
Added missing cast. (lang_memory_region_lookup): Rename variable
new to new_region. (init_os): Rename variable new to
new_userdata. (lang_add_section): Rename variable new to
new_section. (ldlang_add_undef): Rename variable new to
new_undef. (realsymbol): Rename variable new to new_name.
* opcodes/z8kgen.c (internal, gas): Rename variable new to new_op.
Updated sources to avoid using the identifier name "template",
which is a keyword in c++.
* bfd/elf32-arm.c (struct stub_def): Rename member template to
template_sequence. (arm_build_one_stub,
find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub):
Rename variable template to template_sequence.
* bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl):
Rename variable template to template_val.
* gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct
asm_barrier_opt): Change member template to
template_name. (md_begin): Update code to reflect new member
names.
* gas/config/tc-i386.c (struct templates, struct _i386_insn)
(match_template, cpu_flags_match, match_reg_size, match_mem_size)
(operand_size_match, md_begin, i386_print_statistics, pi)
(build_vex_prefix, md_assemble, parse_insn, optimize_imm)
(optimize_disp): Updated code to use new names. (parse_insn):
Added casts.
* gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated
code to use new names.
* gas/config/tc-score.c (struct s3_asm_opcode): Renamed member
template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member
template to template_name. (s7_parse_16_32_inst,
s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-tic30.c (md_begin, struct tic30_insn)
(md_assemble): Update code to use new names.
* gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin)
(optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
Update code to use new names.
* include/opcode/tic30.h (template): Rename type template to
insn_template. Updated code to use new name.
* include/opcode/tic54x.h (template): Rename type template to
insn_template.
* opcodes/cris-dis.c (bytes_to_skip): Update code to use new name.
* opcodes/i386-dis.c (putop): Update code to use new name.
* opcodes/i386-gen.c (process_i386_opcodes): Update code to use
new name.
* opcodes/i386-opc.h (struct template): Rename struct template to
insn_template. Update code accordingly.
* opcodes/i386-tbl.h (i386_optab): Update type to use new name.
* opcodes/ia64-dis.c (print_insn_ia64): Rename variable template
to template_val.
* opcodes/tic30-dis.c (struct instruction, get_tic30_instruction):
Update code to use new name.
* opcodes/tic54x-dis.c (has_lkaddr, get_insn_size)
(print_parallel_instruction, print_insn_tic54x, tic54x_get_insn):
Update code to use new name.
* opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab):
Update type to new name.
2009-08-30 00:11:02 +02:00
|
|
|
new_dirs = (search_dirs_type *) xmalloc (sizeof (search_dirs_type));
|
|
|
|
new_dirs->next = NULL;
|
|
|
|
new_dirs->cmdline = cmdline;
|
|
|
|
*search_tail_ptr = new_dirs;
|
|
|
|
search_tail_ptr = &new_dirs->next;
|
2003-01-06 17:14:01 +01:00
|
|
|
|
|
|
|
/* If a directory is marked as honoring sysroot, prepend the sysroot path
|
|
|
|
now. */
|
2003-03-31 20:13:25 +02:00
|
|
|
if (name[0] == '=')
|
2003-03-03 21:00:35 +01:00
|
|
|
{
|
Updated sources to avoid using the identifier name "new", which is a
keyword in c++.
* bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol.
* bfd/coffgen.c (coff_make_empty_symbol)
(coff_bfd_make_debug_symbol): Rename variable new to new_symbol.
* bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable
new to new_insn.
* bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to
new_d.
* bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument
new to new_reloc.
* bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string.
* bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to
new_symbol.
* bfd/linker.c (bfd_new_link_order): Rename variable new to
new_lo.
* bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to
symbol.
* bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol_type.
* bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to
new_dump.
(read_hdr, rs6000coff_core_p)
(rs6000coff_core_file_matches_executable_p)
(rs6000coff_core_file_failing_command)
(rs6000coff_core_file_failing_signal): Updated function to use new
union member name.
* bfd/som.c (som_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename
variable new to new_symbol.
* binutils/nlmconv.c (main): Rename variable new to new_name.
* gas/config/tc-arm.c (insert_reg_alias): Rename variable new to
new_reg.
* gas/config/tc-dlx.c (parse_operand): Rename variable new to
new_pos.
* gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
new to newr.
* gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable
new to new_pointer.
* gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got):
Change name from new to new_pointer.
* gas/config/tc-or32.c (parse_operand): Rename variable new to
new_pointer.
* gas/config/tc-pdp11.c (md_assemble): Rename variable new to
new_pointer.
* gas/config/tc-pj.c (alias): Change argument new to new_name.
* gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable
new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
new to new_i2n. (s3_convert): Rename variables old and new to
r_old and r_new.
* gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
variables old and new to r_old and r_new.
* gas/config/tc-sh.c (parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
to new_pointer.
* gas/config/tc-z8k.c (parse_exp): Rename variable new to
new_pointer.
* gas/listing.c (listing_newline): Rename variable new to new_i.
* ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop)
(exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new
to new_e.
* ld/ldfile.c (ldfile_add_library_path): Rename variable new to
new_dirs. (ldfile_add_arch): Rename variable new to new_arch.
* ld/ldlang.c (new_statement, lang_final, lang_add_wild)
(lang_target, lang_add_fill, lang_add_data, lang_add_assignment)
(lang_add_insert): Rename variable new to new_stmt. (new_afile):
Added missing cast. (lang_memory_region_lookup): Rename variable
new to new_region. (init_os): Rename variable new to
new_userdata. (lang_add_section): Rename variable new to
new_section. (ldlang_add_undef): Rename variable new to
new_undef. (realsymbol): Rename variable new to new_name.
* opcodes/z8kgen.c (internal, gas): Rename variable new to new_op.
Updated sources to avoid using the identifier name "template",
which is a keyword in c++.
* bfd/elf32-arm.c (struct stub_def): Rename member template to
template_sequence. (arm_build_one_stub,
find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub):
Rename variable template to template_sequence.
* bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl):
Rename variable template to template_val.
* gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct
asm_barrier_opt): Change member template to
template_name. (md_begin): Update code to reflect new member
names.
* gas/config/tc-i386.c (struct templates, struct _i386_insn)
(match_template, cpu_flags_match, match_reg_size, match_mem_size)
(operand_size_match, md_begin, i386_print_statistics, pi)
(build_vex_prefix, md_assemble, parse_insn, optimize_imm)
(optimize_disp): Updated code to use new names. (parse_insn):
Added casts.
* gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated
code to use new names.
* gas/config/tc-score.c (struct s3_asm_opcode): Renamed member
template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member
template to template_name. (s7_parse_16_32_inst,
s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-tic30.c (md_begin, struct tic30_insn)
(md_assemble): Update code to use new names.
* gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin)
(optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
Update code to use new names.
* include/opcode/tic30.h (template): Rename type template to
insn_template. Updated code to use new name.
* include/opcode/tic54x.h (template): Rename type template to
insn_template.
* opcodes/cris-dis.c (bytes_to_skip): Update code to use new name.
* opcodes/i386-dis.c (putop): Update code to use new name.
* opcodes/i386-gen.c (process_i386_opcodes): Update code to use
new name.
* opcodes/i386-opc.h (struct template): Rename struct template to
insn_template. Update code accordingly.
* opcodes/i386-tbl.h (i386_optab): Update type to use new name.
* opcodes/ia64-dis.c (print_insn_ia64): Rename variable template
to template_val.
* opcodes/tic30-dis.c (struct instruction, get_tic30_instruction):
Update code to use new name.
* opcodes/tic54x-dis.c (has_lkaddr, get_insn_size)
(print_parallel_instruction, print_insn_tic54x, tic54x_get_insn):
Update code to use new name.
* opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab):
Update type to new name.
2009-08-30 00:11:02 +02:00
|
|
|
new_dirs->name = concat (ld_sysroot, name + 1, (const char *) NULL);
|
|
|
|
new_dirs->sysrooted = TRUE;
|
2003-03-03 21:00:35 +01:00
|
|
|
}
|
|
|
|
else
|
2003-03-31 20:13:25 +02:00
|
|
|
{
|
Updated sources to avoid using the identifier name "new", which is a
keyword in c++.
* bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol.
* bfd/coffgen.c (coff_make_empty_symbol)
(coff_bfd_make_debug_symbol): Rename variable new to new_symbol.
* bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable
new to new_insn.
* bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to
new_d.
* bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument
new to new_reloc.
* bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string.
* bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to
new_symbol.
* bfd/linker.c (bfd_new_link_order): Rename variable new to
new_lo.
* bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to
symbol.
* bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol_type.
* bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to
new_dump.
(read_hdr, rs6000coff_core_p)
(rs6000coff_core_file_matches_executable_p)
(rs6000coff_core_file_failing_command)
(rs6000coff_core_file_failing_signal): Updated function to use new
union member name.
* bfd/som.c (som_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename
variable new to new_symbol.
* binutils/nlmconv.c (main): Rename variable new to new_name.
* gas/config/tc-arm.c (insert_reg_alias): Rename variable new to
new_reg.
* gas/config/tc-dlx.c (parse_operand): Rename variable new to
new_pos.
* gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
new to newr.
* gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable
new to new_pointer.
* gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got):
Change name from new to new_pointer.
* gas/config/tc-or32.c (parse_operand): Rename variable new to
new_pointer.
* gas/config/tc-pdp11.c (md_assemble): Rename variable new to
new_pointer.
* gas/config/tc-pj.c (alias): Change argument new to new_name.
* gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable
new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
new to new_i2n. (s3_convert): Rename variables old and new to
r_old and r_new.
* gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
variables old and new to r_old and r_new.
* gas/config/tc-sh.c (parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
to new_pointer.
* gas/config/tc-z8k.c (parse_exp): Rename variable new to
new_pointer.
* gas/listing.c (listing_newline): Rename variable new to new_i.
* ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop)
(exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new
to new_e.
* ld/ldfile.c (ldfile_add_library_path): Rename variable new to
new_dirs. (ldfile_add_arch): Rename variable new to new_arch.
* ld/ldlang.c (new_statement, lang_final, lang_add_wild)
(lang_target, lang_add_fill, lang_add_data, lang_add_assignment)
(lang_add_insert): Rename variable new to new_stmt. (new_afile):
Added missing cast. (lang_memory_region_lookup): Rename variable
new to new_region. (init_os): Rename variable new to
new_userdata. (lang_add_section): Rename variable new to
new_section. (ldlang_add_undef): Rename variable new to
new_undef. (realsymbol): Rename variable new to new_name.
* opcodes/z8kgen.c (internal, gas): Rename variable new to new_op.
Updated sources to avoid using the identifier name "template",
which is a keyword in c++.
* bfd/elf32-arm.c (struct stub_def): Rename member template to
template_sequence. (arm_build_one_stub,
find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub):
Rename variable template to template_sequence.
* bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl):
Rename variable template to template_val.
* gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct
asm_barrier_opt): Change member template to
template_name. (md_begin): Update code to reflect new member
names.
* gas/config/tc-i386.c (struct templates, struct _i386_insn)
(match_template, cpu_flags_match, match_reg_size, match_mem_size)
(operand_size_match, md_begin, i386_print_statistics, pi)
(build_vex_prefix, md_assemble, parse_insn, optimize_imm)
(optimize_disp): Updated code to use new names. (parse_insn):
Added casts.
* gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated
code to use new names.
* gas/config/tc-score.c (struct s3_asm_opcode): Renamed member
template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member
template to template_name. (s7_parse_16_32_inst,
s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-tic30.c (md_begin, struct tic30_insn)
(md_assemble): Update code to use new names.
* gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin)
(optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
Update code to use new names.
* include/opcode/tic30.h (template): Rename type template to
insn_template. Updated code to use new name.
* include/opcode/tic54x.h (template): Rename type template to
insn_template.
* opcodes/cris-dis.c (bytes_to_skip): Update code to use new name.
* opcodes/i386-dis.c (putop): Update code to use new name.
* opcodes/i386-gen.c (process_i386_opcodes): Update code to use
new name.
* opcodes/i386-opc.h (struct template): Rename struct template to
insn_template. Update code accordingly.
* opcodes/i386-tbl.h (i386_optab): Update type to use new name.
* opcodes/ia64-dis.c (print_insn_ia64): Rename variable template
to template_val.
* opcodes/tic30-dis.c (struct instruction, get_tic30_instruction):
Update code to use new name.
* opcodes/tic54x-dis.c (has_lkaddr, get_insn_size)
(print_parallel_instruction, print_insn_tic54x, tic54x_get_insn):
Update code to use new name.
* opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab):
Update type to new name.
2009-08-30 00:11:02 +02:00
|
|
|
new_dirs->name = xstrdup (name);
|
|
|
|
new_dirs->sysrooted = is_sysrooted_pathname (name, FALSE);
|
2003-03-31 20:13:25 +02:00
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Try to open a BFD for a lang_input_statement. */
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2003-06-28 07:28:54 +02:00
|
|
|
ldfile_try_open_bfd (const char *attempt,
|
|
|
|
lang_input_statement_type *entry)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
entry->the_bfd = bfd_openr (attempt, entry->target);
|
|
|
|
|
|
|
|
if (trace_file_tries)
|
|
|
|
{
|
|
|
|
if (entry->the_bfd == NULL)
|
|
|
|
info_msg (_("attempt to open %s failed\n"), attempt);
|
|
|
|
else
|
|
|
|
info_msg (_("attempt to open %s succeeded\n"), attempt);
|
|
|
|
}
|
|
|
|
|
1999-07-10 00:52:05 +02:00
|
|
|
if (entry->the_bfd == NULL)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (bfd_get_error () == bfd_error_invalid_target)
|
|
|
|
einfo (_("%F%P: invalid BFD target `%s'\n"), entry->target);
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
1999-07-10 00:52:05 +02:00
|
|
|
|
|
|
|
/* If we are searching for this file, see if the architecture is
|
|
|
|
compatible with the output file. If it isn't, keep searching.
|
|
|
|
If we can't open the file as an object file, stop the search
|
2004-10-11 04:40:47 +02:00
|
|
|
here. If we are statically linking, ensure that we don't link
|
|
|
|
a dynamic object. */
|
1999-07-10 00:52:05 +02:00
|
|
|
|
2004-10-11 04:40:47 +02:00
|
|
|
if (entry->search_dirs_flag || !entry->dynamic)
|
1999-07-10 00:52:05 +02:00
|
|
|
{
|
|
|
|
bfd *check;
|
|
|
|
|
|
|
|
if (bfd_check_format (entry->the_bfd, bfd_archive))
|
|
|
|
check = bfd_openr_next_archived_file (entry->the_bfd, NULL);
|
|
|
|
else
|
|
|
|
check = entry->the_bfd;
|
|
|
|
|
2000-03-06 19:08:38 +01:00
|
|
|
if (check != NULL)
|
1999-07-10 00:52:05 +02:00
|
|
|
{
|
2000-03-06 19:08:38 +01:00
|
|
|
if (! bfd_check_format (check, bfd_object))
|
2002-10-10 17:59:10 +02:00
|
|
|
{
|
|
|
|
if (check == entry->the_bfd
|
2004-10-11 04:40:47 +02:00
|
|
|
&& entry->search_dirs_flag
|
2002-10-10 17:59:10 +02:00
|
|
|
&& bfd_get_error () == bfd_error_file_not_recognized
|
|
|
|
&& ! ldemul_unrecognized_file (entry))
|
|
|
|
{
|
|
|
|
int token, skip = 0;
|
|
|
|
char *arg, *arg1, *arg2, *arg3;
|
|
|
|
extern FILE *yyin;
|
|
|
|
|
|
|
|
/* Try to interpret the file as a linker script. */
|
|
|
|
ldfile_open_command_file (attempt);
|
2002-11-30 09:39:46 +01:00
|
|
|
|
|
|
|
ldfile_assumed_script = TRUE;
|
2002-10-10 17:59:10 +02:00
|
|
|
parser_input = input_selected;
|
|
|
|
ldlex_both ();
|
|
|
|
token = INPUT_SCRIPT;
|
|
|
|
while (token != 0)
|
|
|
|
{
|
|
|
|
switch (token)
|
|
|
|
{
|
|
|
|
case OUTPUT_FORMAT:
|
|
|
|
if ((token = yylex ()) != '(')
|
|
|
|
continue;
|
|
|
|
if ((token = yylex ()) != NAME)
|
|
|
|
continue;
|
|
|
|
arg1 = yylval.name;
|
|
|
|
arg2 = NULL;
|
|
|
|
arg3 = NULL;
|
|
|
|
token = yylex ();
|
|
|
|
if (token == ',')
|
|
|
|
{
|
|
|
|
if ((token = yylex ()) != NAME)
|
|
|
|
{
|
|
|
|
free (arg1);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
arg2 = yylval.name;
|
|
|
|
if ((token = yylex ()) != ','
|
|
|
|
|| (token = yylex ()) != NAME)
|
|
|
|
{
|
|
|
|
free (arg1);
|
|
|
|
free (arg2);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
arg3 = yylval.name;
|
|
|
|
token = yylex ();
|
|
|
|
}
|
|
|
|
if (token == ')')
|
|
|
|
{
|
|
|
|
switch (command_line.endian)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case ENDIAN_UNSET:
|
|
|
|
arg = arg1; break;
|
|
|
|
case ENDIAN_BIG:
|
|
|
|
arg = arg2 ? arg2 : arg1; break;
|
|
|
|
case ENDIAN_LITTLE:
|
|
|
|
arg = arg3 ? arg3 : arg1; break;
|
|
|
|
}
|
|
|
|
if (strcmp (arg, lang_get_output_target ()) != 0)
|
|
|
|
skip = 1;
|
|
|
|
}
|
|
|
|
free (arg1);
|
|
|
|
if (arg2) free (arg2);
|
|
|
|
if (arg3) free (arg3);
|
|
|
|
break;
|
|
|
|
case NAME:
|
|
|
|
case LNAME:
|
|
|
|
case VERS_IDENTIFIER:
|
|
|
|
case VERS_TAG:
|
|
|
|
free (yylval.name);
|
|
|
|
break;
|
|
|
|
case INT:
|
|
|
|
if (yylval.bigint.str)
|
|
|
|
free (yylval.bigint.str);
|
|
|
|
break;
|
2004-01-03 12:09:07 +01:00
|
|
|
}
|
2002-10-10 17:59:10 +02:00
|
|
|
token = yylex ();
|
|
|
|
}
|
2003-03-19 10:56:06 +01:00
|
|
|
ldlex_popstate ();
|
2002-11-30 09:39:46 +01:00
|
|
|
ldfile_assumed_script = FALSE;
|
2002-10-10 17:59:10 +02:00
|
|
|
fclose (yyin);
|
|
|
|
yyin = NULL;
|
|
|
|
if (skip)
|
|
|
|
{
|
2007-05-03 11:24:16 +02:00
|
|
|
if (command_line.warn_search_mismatch)
|
|
|
|
einfo (_("%P: skipping incompatible %s "
|
|
|
|
"when searching for %s\n"),
|
|
|
|
attempt, entry->local_sym_name);
|
2002-10-10 17:59:10 +02:00
|
|
|
bfd_close (entry->the_bfd);
|
|
|
|
entry->the_bfd = NULL;
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2002-10-10 17:59:10 +02:00
|
|
|
}
|
|
|
|
}
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
2002-10-10 17:59:10 +02:00
|
|
|
}
|
2002-05-10 23:20:16 +02:00
|
|
|
|
2004-10-11 04:40:47 +02:00
|
|
|
if (!entry->dynamic && (entry->the_bfd->flags & DYNAMIC) != 0)
|
|
|
|
{
|
|
|
|
einfo (_("%F%P: attempted static link of dynamic object `%s'\n"),
|
|
|
|
attempt);
|
|
|
|
bfd_close (entry->the_bfd);
|
|
|
|
entry->the_bfd = NULL;
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->search_dirs_flag
|
2008-02-15 04:35:53 +01:00
|
|
|
&& !bfd_arch_get_compatible (check, link_info.output_bfd,
|
2004-10-11 04:40:47 +02:00
|
|
|
command_line.accept_unknown_input_arch)
|
2002-12-23 11:45:03 +01:00
|
|
|
/* XCOFF archives can have 32 and 64 bit objects. */
|
2002-05-10 23:20:16 +02:00
|
|
|
&& ! (bfd_get_flavour (check) == bfd_target_xcoff_flavour
|
2008-02-15 04:35:53 +01:00
|
|
|
&& bfd_get_flavour (link_info.output_bfd) == bfd_target_xcoff_flavour
|
2002-05-10 23:20:16 +02:00
|
|
|
&& bfd_check_format (entry->the_bfd, bfd_archive)))
|
2000-03-06 19:08:38 +01:00
|
|
|
{
|
2007-05-03 11:24:16 +02:00
|
|
|
if (command_line.warn_search_mismatch)
|
|
|
|
einfo (_("%P: skipping incompatible %s "
|
|
|
|
"when searching for %s\n"),
|
|
|
|
attempt, entry->local_sym_name);
|
2000-03-06 19:08:38 +01:00
|
|
|
bfd_close (entry->the_bfd);
|
|
|
|
entry->the_bfd = NULL;
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
2000-03-06 19:08:38 +01:00
|
|
|
}
|
1999-07-10 00:52:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Search for and open the file specified by ENTRY. If it is an
|
|
|
|
archive, use ARCH, LIB and SUFFIX to modify the file name. */
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean
|
2003-06-28 07:28:54 +02:00
|
|
|
ldfile_open_file_search (const char *arch,
|
|
|
|
lang_input_statement_type *entry,
|
|
|
|
const char *lib,
|
|
|
|
const char *suffix)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
search_dirs_type *search;
|
|
|
|
|
|
|
|
/* If this is not an archive, try to open it in the current
|
|
|
|
directory first. */
|
|
|
|
if (! entry->is_archive)
|
|
|
|
{
|
2003-03-25 11:29:28 +01:00
|
|
|
if (entry->sysrooted && IS_ABSOLUTE_PATH (entry->filename))
|
2003-03-03 21:00:35 +01:00
|
|
|
{
|
|
|
|
char *name = concat (ld_sysroot, entry->filename,
|
|
|
|
(const char *) NULL);
|
|
|
|
if (ldfile_try_open_bfd (name, entry))
|
|
|
|
{
|
|
|
|
entry->filename = name;
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
free (name);
|
|
|
|
}
|
|
|
|
else if (ldfile_try_open_bfd (entry->filename, entry))
|
|
|
|
{
|
2003-03-25 11:29:28 +01:00
|
|
|
entry->sysrooted = IS_ABSOLUTE_PATH (entry->filename)
|
|
|
|
&& is_sysrooted_pathname (entry->filename, TRUE);
|
2003-03-03 21:00:35 +01:00
|
|
|
return TRUE;
|
|
|
|
}
|
2003-03-25 11:29:28 +01:00
|
|
|
|
|
|
|
if (IS_ABSOLUTE_PATH (entry->filename))
|
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2003-06-28 07:28:54 +02:00
|
|
|
for (search = search_head; search != NULL; search = search->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
char *string;
|
|
|
|
|
2003-06-25 08:40:27 +02:00
|
|
|
if (entry->dynamic && ! link_info.relocatable)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (ldemul_open_dynamic_archive (arch, search, entry))
|
2003-03-03 21:00:35 +01:00
|
|
|
{
|
|
|
|
entry->sysrooted = search->sysrooted;
|
|
|
|
return TRUE;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (entry->is_archive)
|
2008-08-08 10:06:16 +02:00
|
|
|
string = concat (search->name, slash, lib, entry->filename,
|
|
|
|
arch, suffix, (const char *) NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
else
|
2008-08-08 10:06:16 +02:00
|
|
|
string = concat (search->name, slash, entry->filename,
|
|
|
|
(const char *) 0);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
if (ldfile_try_open_bfd (string, entry))
|
|
|
|
{
|
1999-07-10 00:52:05 +02:00
|
|
|
entry->filename = string;
|
2003-03-03 21:00:35 +01:00
|
|
|
entry->sysrooted = search->sysrooted;
|
2002-11-30 09:39:46 +01:00
|
|
|
return TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
free (string);
|
|
|
|
}
|
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
return FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2010-01-21 11:31:32 +01:00
|
|
|
/* Open the input file specified by ENTRY.
|
|
|
|
PR 4437: Do not stop on the first missing file, but
|
|
|
|
continue processing other input files in case there
|
|
|
|
are more errors to report. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
void
|
2003-06-28 07:28:54 +02:00
|
|
|
ldfile_open_file (lang_input_statement_type *entry)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
if (entry->the_bfd != NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (! entry->search_dirs_flag)
|
|
|
|
{
|
|
|
|
if (ldfile_try_open_bfd (entry->filename, entry))
|
|
|
|
return;
|
2010-01-21 11:31:32 +01:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (strcmp (entry->filename, entry->local_sym_name) != 0)
|
2010-01-21 11:31:32 +01:00
|
|
|
einfo (_("%P: cannot find %s (%s): %E\n"),
|
1999-05-03 09:29:11 +02:00
|
|
|
entry->filename, entry->local_sym_name);
|
|
|
|
else
|
2010-01-21 11:31:32 +01:00
|
|
|
einfo (_("%P: cannot find %s: %E\n"), entry->local_sym_name);
|
|
|
|
|
|
|
|
entry->missing_file = TRUE;
|
|
|
|
missing_file = TRUE;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
search_arch_type *arch;
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean found = FALSE;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
/* Try to open <filename><suffix> or lib<filename><suffix>.a */
|
2003-06-28 07:28:54 +02:00
|
|
|
for (arch = search_arch_head; arch != NULL; arch = arch->next)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-02-20 22:07:24 +01:00
|
|
|
found = ldfile_open_file_search (arch->name, entry, "lib", ".a");
|
|
|
|
if (found)
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
#ifdef VMS
|
2001-02-20 22:07:24 +01:00
|
|
|
found = ldfile_open_file_search (arch->name, entry, ":lib", ".a");
|
|
|
|
if (found)
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
#endif
|
2001-02-20 22:07:24 +01:00
|
|
|
found = ldemul_find_potential_libraries (arch->name, entry);
|
|
|
|
if (found)
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-09-29 13:18:18 +02:00
|
|
|
|
2001-02-20 22:07:24 +01:00
|
|
|
/* If we have found the file, we don't need to search directories
|
|
|
|
again. */
|
|
|
|
if (found)
|
2002-11-30 09:39:46 +01:00
|
|
|
entry->search_dirs_flag = FALSE;
|
2010-01-21 11:31:32 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if (entry->sysrooted
|
2003-03-25 11:29:28 +01:00
|
|
|
&& ld_sysroot
|
|
|
|
&& IS_ABSOLUTE_PATH (entry->local_sym_name))
|
2010-01-21 11:31:32 +01:00
|
|
|
einfo (_("%P: cannot find %s inside %s\n"),
|
|
|
|
entry->local_sym_name, ld_sysroot);
|
|
|
|
else
|
|
|
|
einfo (_("%P: cannot find %s\n"), entry->local_sym_name);
|
|
|
|
entry->missing_file = TRUE;
|
|
|
|
missing_file = TRUE;
|
|
|
|
}
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try to open NAME; if that fails, try NAME with EXTEN appended to it. */
|
|
|
|
|
|
|
|
static FILE *
|
2003-06-28 07:28:54 +02:00
|
|
|
try_open (const char *name, const char *exten)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
FILE *result;
|
|
|
|
|
|
|
|
result = fopen (name, "r");
|
2000-09-29 13:18:18 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (trace_file_tries)
|
|
|
|
{
|
|
|
|
if (result == NULL)
|
|
|
|
info_msg (_("cannot find script file %s\n"), name);
|
|
|
|
else
|
|
|
|
info_msg (_("opened script file %s\n"), name);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (result != NULL)
|
|
|
|
return result;
|
|
|
|
|
|
|
|
if (*exten)
|
|
|
|
{
|
2008-08-08 10:06:16 +02:00
|
|
|
char *buff;
|
|
|
|
|
|
|
|
buff = concat (name, exten, (const char *) NULL);
|
1999-05-03 09:29:11 +02:00
|
|
|
result = fopen (buff, "r");
|
2000-09-29 13:18:18 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
if (trace_file_tries)
|
|
|
|
{
|
|
|
|
if (result == NULL)
|
|
|
|
info_msg (_("cannot find script file %s\n"), buff);
|
|
|
|
else
|
|
|
|
info_msg (_("opened script file %s\n"), buff);
|
|
|
|
}
|
2008-08-08 10:06:16 +02:00
|
|
|
free (buff);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2008-08-09 12:15:39 +02:00
|
|
|
/* Return TRUE iff directory DIR contains an "ldscripts" subdirectory. */
|
|
|
|
|
|
|
|
static bfd_boolean
|
|
|
|
check_for_scripts_dir (char *dir)
|
|
|
|
{
|
|
|
|
char *buf;
|
|
|
|
struct stat s;
|
|
|
|
bfd_boolean res;
|
|
|
|
|
|
|
|
buf = concat (dir, "/ldscripts", (const char *) NULL);
|
|
|
|
res = stat (buf, &s) == 0 && S_ISDIR (s.st_mode);
|
|
|
|
free (buf);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Return the default directory for finding script files.
|
|
|
|
We look for the "ldscripts" directory in:
|
|
|
|
|
|
|
|
SCRIPTDIR (passed from Makefile)
|
|
|
|
(adjusted according to the current location of the binary)
|
|
|
|
SCRIPTDIR (passed from Makefile)
|
2009-04-14 05:17:21 +02:00
|
|
|
the dir where this program is (for using it from the build tree). */
|
2008-08-09 12:15:39 +02:00
|
|
|
|
|
|
|
static char *
|
|
|
|
find_scripts_dir (void)
|
|
|
|
{
|
2009-04-14 05:17:21 +02:00
|
|
|
char *dir;
|
2008-08-09 12:15:39 +02:00
|
|
|
|
|
|
|
dir = make_relative_prefix (program_name, BINDIR, SCRIPTDIR);
|
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
if (check_for_scripts_dir (dir))
|
|
|
|
return dir;
|
|
|
|
free (dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
dir = make_relative_prefix (program_name, TOOLBINDIR, SCRIPTDIR);
|
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
if (check_for_scripts_dir (dir))
|
|
|
|
return dir;
|
|
|
|
free (dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (check_for_scripts_dir (SCRIPTDIR))
|
|
|
|
/* We've been installed normally. */
|
|
|
|
return SCRIPTDIR;
|
|
|
|
|
|
|
|
/* Look for "ldscripts" in the dir where our binary is. */
|
2009-04-14 05:17:21 +02:00
|
|
|
dir = make_relative_prefix (program_name, ".", ".");
|
|
|
|
if (dir)
|
|
|
|
{
|
|
|
|
if (check_for_scripts_dir (dir))
|
|
|
|
return dir;
|
|
|
|
free (dir);
|
|
|
|
}
|
2008-08-09 12:15:39 +02:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2009-04-14 04:47:22 +02:00
|
|
|
/* If DEFAULT_ONLY is false, try to open NAME; if that fails, look for
|
|
|
|
it in directories specified with -L, then in the default script
|
|
|
|
directory, without and with EXTEND appended. If DEFAULT_ONLY is
|
|
|
|
true, the search is restricted to the default script location. */
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2005-04-29 01:54:33 +02:00
|
|
|
static FILE *
|
2009-04-06 02:47:09 +02:00
|
|
|
ldfile_find_command_file (const char *name, const char *extend,
|
|
|
|
bfd_boolean default_only)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
search_dirs_type *search;
|
2009-04-06 03:21:09 +02:00
|
|
|
FILE *result = NULL;
|
2008-08-09 12:15:39 +02:00
|
|
|
char *buffer;
|
|
|
|
static search_dirs_type *script_search;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2009-04-14 04:47:22 +02:00
|
|
|
if (!default_only)
|
|
|
|
{
|
|
|
|
/* First try raw name. */
|
|
|
|
result = try_open (name, "");
|
|
|
|
if (result != NULL)
|
|
|
|
return result;
|
|
|
|
}
|
2008-08-09 12:15:39 +02:00
|
|
|
|
|
|
|
if (!script_search)
|
2000-07-11 22:17:02 +02:00
|
|
|
{
|
2008-08-09 12:15:39 +02:00
|
|
|
char *script_dir = find_scripts_dir ();
|
|
|
|
if (script_dir)
|
2000-07-11 22:17:02 +02:00
|
|
|
{
|
2008-08-09 12:15:39 +02:00
|
|
|
search_dirs_type **save_tail_ptr = search_tail_ptr;
|
|
|
|
search_tail_ptr = &script_search;
|
|
|
|
ldfile_add_library_path (script_dir, TRUE);
|
|
|
|
search_tail_ptr = save_tail_ptr;
|
2000-07-11 22:17:02 +02:00
|
|
|
}
|
2008-08-09 12:15:39 +02:00
|
|
|
}
|
|
|
|
|
2009-04-06 02:47:09 +02:00
|
|
|
/* Temporarily append script_search to the path list so that the
|
|
|
|
paths specified with -L will be searched first. */
|
|
|
|
*search_tail_ptr = script_search;
|
|
|
|
|
2008-08-09 12:15:39 +02:00
|
|
|
/* Try now prefixes. */
|
2009-04-06 02:47:09 +02:00
|
|
|
for (search = default_only ? script_search : search_head;
|
|
|
|
search != NULL;
|
|
|
|
search = search->next)
|
2008-08-09 12:15:39 +02:00
|
|
|
{
|
|
|
|
buffer = concat (search->name, slash, name, (const char *) NULL);
|
|
|
|
result = try_open (buffer, extend);
|
|
|
|
free (buffer);
|
|
|
|
if (result)
|
|
|
|
break;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
2000-09-29 13:18:18 +02:00
|
|
|
|
2009-04-06 02:47:09 +02:00
|
|
|
/* Restore the original path list. */
|
|
|
|
*search_tail_ptr = NULL;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2009-04-06 02:47:09 +02:00
|
|
|
/* Open command file NAME. */
|
|
|
|
|
|
|
|
static void
|
|
|
|
ldfile_open_command_file_1 (const char *name, bfd_boolean default_only)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
|
|
|
FILE *ldlex_input_stack;
|
2009-04-06 02:47:09 +02:00
|
|
|
ldlex_input_stack = ldfile_find_command_file (name, "", default_only);
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-06-28 07:28:54 +02:00
|
|
|
if (ldlex_input_stack == NULL)
|
2000-07-11 22:17:02 +02:00
|
|
|
{
|
|
|
|
bfd_set_error (bfd_error_system_call);
|
|
|
|
einfo (_("%P%F: cannot open linker script file %s: %E\n"), name);
|
|
|
|
}
|
2000-09-29 13:18:18 +02:00
|
|
|
|
2000-07-11 22:17:02 +02:00
|
|
|
lex_push_file (ldlex_input_stack, name);
|
2000-09-29 13:18:18 +02:00
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
ldfile_input_filename = name;
|
|
|
|
lineno = 1;
|
2002-05-03 15:48:55 +02:00
|
|
|
|
2001-08-12 09:59:28 +02:00
|
|
|
saved_script_handle = ldlex_input_stack;
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|
|
|
|
|
2009-04-06 02:47:09 +02:00
|
|
|
/* Open command file NAME in the current directory, -L directories,
|
|
|
|
the default script location, in that order. */
|
|
|
|
|
|
|
|
void
|
|
|
|
ldfile_open_command_file (const char *name)
|
|
|
|
{
|
|
|
|
ldfile_open_command_file_1 (name, FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Open command file NAME at the default script location. */
|
|
|
|
|
|
|
|
void
|
|
|
|
ldfile_open_default_command_file (const char *name)
|
|
|
|
{
|
|
|
|
ldfile_open_command_file_1 (name, TRUE);
|
|
|
|
}
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
void
|
2003-06-28 07:28:54 +02:00
|
|
|
ldfile_add_arch (const char *in_name)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2001-05-02 18:42:55 +02:00
|
|
|
char *name = xstrdup (in_name);
|
Updated sources to avoid using the identifier name "new", which is a
keyword in c++.
* bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol.
* bfd/coffgen.c (coff_make_empty_symbol)
(coff_bfd_make_debug_symbol): Rename variable new to new_symbol.
* bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable
new to new_insn.
* bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to
new_d.
* bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument
new to new_reloc.
* bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string.
* bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to
new_symbol.
* bfd/linker.c (bfd_new_link_order): Rename variable new to
new_lo.
* bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to
symbol.
* bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol_type.
* bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to
new_dump.
(read_hdr, rs6000coff_core_p)
(rs6000coff_core_file_matches_executable_p)
(rs6000coff_core_file_failing_command)
(rs6000coff_core_file_failing_signal): Updated function to use new
union member name.
* bfd/som.c (som_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename
variable new to new_symbol.
* binutils/nlmconv.c (main): Rename variable new to new_name.
* gas/config/tc-arm.c (insert_reg_alias): Rename variable new to
new_reg.
* gas/config/tc-dlx.c (parse_operand): Rename variable new to
new_pos.
* gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
new to newr.
* gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable
new to new_pointer.
* gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got):
Change name from new to new_pointer.
* gas/config/tc-or32.c (parse_operand): Rename variable new to
new_pointer.
* gas/config/tc-pdp11.c (md_assemble): Rename variable new to
new_pointer.
* gas/config/tc-pj.c (alias): Change argument new to new_name.
* gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable
new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
new to new_i2n. (s3_convert): Rename variables old and new to
r_old and r_new.
* gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
variables old and new to r_old and r_new.
* gas/config/tc-sh.c (parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
to new_pointer.
* gas/config/tc-z8k.c (parse_exp): Rename variable new to
new_pointer.
* gas/listing.c (listing_newline): Rename variable new to new_i.
* ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop)
(exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new
to new_e.
* ld/ldfile.c (ldfile_add_library_path): Rename variable new to
new_dirs. (ldfile_add_arch): Rename variable new to new_arch.
* ld/ldlang.c (new_statement, lang_final, lang_add_wild)
(lang_target, lang_add_fill, lang_add_data, lang_add_assignment)
(lang_add_insert): Rename variable new to new_stmt. (new_afile):
Added missing cast. (lang_memory_region_lookup): Rename variable
new to new_region. (init_os): Rename variable new to
new_userdata. (lang_add_section): Rename variable new to
new_section. (ldlang_add_undef): Rename variable new to
new_undef. (realsymbol): Rename variable new to new_name.
* opcodes/z8kgen.c (internal, gas): Rename variable new to new_op.
Updated sources to avoid using the identifier name "template",
which is a keyword in c++.
* bfd/elf32-arm.c (struct stub_def): Rename member template to
template_sequence. (arm_build_one_stub,
find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub):
Rename variable template to template_sequence.
* bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl):
Rename variable template to template_val.
* gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct
asm_barrier_opt): Change member template to
template_name. (md_begin): Update code to reflect new member
names.
* gas/config/tc-i386.c (struct templates, struct _i386_insn)
(match_template, cpu_flags_match, match_reg_size, match_mem_size)
(operand_size_match, md_begin, i386_print_statistics, pi)
(build_vex_prefix, md_assemble, parse_insn, optimize_imm)
(optimize_disp): Updated code to use new names. (parse_insn):
Added casts.
* gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated
code to use new names.
* gas/config/tc-score.c (struct s3_asm_opcode): Renamed member
template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member
template to template_name. (s7_parse_16_32_inst,
s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-tic30.c (md_begin, struct tic30_insn)
(md_assemble): Update code to use new names.
* gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin)
(optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
Update code to use new names.
* include/opcode/tic30.h (template): Rename type template to
insn_template. Updated code to use new name.
* include/opcode/tic54x.h (template): Rename type template to
insn_template.
* opcodes/cris-dis.c (bytes_to_skip): Update code to use new name.
* opcodes/i386-dis.c (putop): Update code to use new name.
* opcodes/i386-gen.c (process_i386_opcodes): Update code to use
new name.
* opcodes/i386-opc.h (struct template): Rename struct template to
insn_template. Update code accordingly.
* opcodes/i386-tbl.h (i386_optab): Update type to use new name.
* opcodes/ia64-dis.c (print_insn_ia64): Rename variable template
to template_val.
* opcodes/tic30-dis.c (struct instruction, get_tic30_instruction):
Update code to use new name.
* opcodes/tic54x-dis.c (has_lkaddr, get_insn_size)
(print_parallel_instruction, print_insn_tic54x, tic54x_get_insn):
Update code to use new name.
* opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab):
Update type to new name.
2009-08-30 00:11:02 +02:00
|
|
|
search_arch_type *new_arch = (search_arch_type *)
|
|
|
|
xmalloc (sizeof (search_arch_type));
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
ldfile_output_machine_name = in_name;
|
|
|
|
|
Updated sources to avoid using the identifier name "new", which is a
keyword in c++.
* bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol.
* bfd/coffgen.c (coff_make_empty_symbol)
(coff_bfd_make_debug_symbol): Rename variable new to new_symbol.
* bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable
new to new_insn.
* bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to
new_d.
* bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument
new to new_reloc.
* bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string.
* bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to
new_symbol.
* bfd/linker.c (bfd_new_link_order): Rename variable new to
new_lo.
* bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to
symbol.
* bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol_type.
* bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to
new_dump.
(read_hdr, rs6000coff_core_p)
(rs6000coff_core_file_matches_executable_p)
(rs6000coff_core_file_failing_command)
(rs6000coff_core_file_failing_signal): Updated function to use new
union member name.
* bfd/som.c (som_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename
variable new to new_symbol.
* binutils/nlmconv.c (main): Rename variable new to new_name.
* gas/config/tc-arm.c (insert_reg_alias): Rename variable new to
new_reg.
* gas/config/tc-dlx.c (parse_operand): Rename variable new to
new_pos.
* gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
new to newr.
* gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable
new to new_pointer.
* gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got):
Change name from new to new_pointer.
* gas/config/tc-or32.c (parse_operand): Rename variable new to
new_pointer.
* gas/config/tc-pdp11.c (md_assemble): Rename variable new to
new_pointer.
* gas/config/tc-pj.c (alias): Change argument new to new_name.
* gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable
new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
new to new_i2n. (s3_convert): Rename variables old and new to
r_old and r_new.
* gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
variables old and new to r_old and r_new.
* gas/config/tc-sh.c (parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
to new_pointer.
* gas/config/tc-z8k.c (parse_exp): Rename variable new to
new_pointer.
* gas/listing.c (listing_newline): Rename variable new to new_i.
* ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop)
(exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new
to new_e.
* ld/ldfile.c (ldfile_add_library_path): Rename variable new to
new_dirs. (ldfile_add_arch): Rename variable new to new_arch.
* ld/ldlang.c (new_statement, lang_final, lang_add_wild)
(lang_target, lang_add_fill, lang_add_data, lang_add_assignment)
(lang_add_insert): Rename variable new to new_stmt. (new_afile):
Added missing cast. (lang_memory_region_lookup): Rename variable
new to new_region. (init_os): Rename variable new to
new_userdata. (lang_add_section): Rename variable new to
new_section. (ldlang_add_undef): Rename variable new to
new_undef. (realsymbol): Rename variable new to new_name.
* opcodes/z8kgen.c (internal, gas): Rename variable new to new_op.
Updated sources to avoid using the identifier name "template",
which is a keyword in c++.
* bfd/elf32-arm.c (struct stub_def): Rename member template to
template_sequence. (arm_build_one_stub,
find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub):
Rename variable template to template_sequence.
* bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl):
Rename variable template to template_val.
* gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct
asm_barrier_opt): Change member template to
template_name. (md_begin): Update code to reflect new member
names.
* gas/config/tc-i386.c (struct templates, struct _i386_insn)
(match_template, cpu_flags_match, match_reg_size, match_mem_size)
(operand_size_match, md_begin, i386_print_statistics, pi)
(build_vex_prefix, md_assemble, parse_insn, optimize_imm)
(optimize_disp): Updated code to use new names. (parse_insn):
Added casts.
* gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated
code to use new names.
* gas/config/tc-score.c (struct s3_asm_opcode): Renamed member
template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member
template to template_name. (s7_parse_16_32_inst,
s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-tic30.c (md_begin, struct tic30_insn)
(md_assemble): Update code to use new names.
* gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin)
(optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
Update code to use new names.
* include/opcode/tic30.h (template): Rename type template to
insn_template. Updated code to use new name.
* include/opcode/tic54x.h (template): Rename type template to
insn_template.
* opcodes/cris-dis.c (bytes_to_skip): Update code to use new name.
* opcodes/i386-dis.c (putop): Update code to use new name.
* opcodes/i386-gen.c (process_i386_opcodes): Update code to use
new name.
* opcodes/i386-opc.h (struct template): Rename struct template to
insn_template. Update code accordingly.
* opcodes/i386-tbl.h (i386_optab): Update type to use new name.
* opcodes/ia64-dis.c (print_insn_ia64): Rename variable template
to template_val.
* opcodes/tic30-dis.c (struct instruction, get_tic30_instruction):
Update code to use new name.
* opcodes/tic54x-dis.c (has_lkaddr, get_insn_size)
(print_parallel_instruction, print_insn_tic54x, tic54x_get_insn):
Update code to use new name.
* opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab):
Update type to new name.
2009-08-30 00:11:02 +02:00
|
|
|
new_arch->name = name;
|
|
|
|
new_arch->next = NULL;
|
1999-05-03 09:29:11 +02:00
|
|
|
while (*name)
|
|
|
|
{
|
2001-09-19 07:33:36 +02:00
|
|
|
*name = TOLOWER (*name);
|
1999-05-03 09:29:11 +02:00
|
|
|
name++;
|
|
|
|
}
|
Updated sources to avoid using the identifier name "new", which is a
keyword in c++.
* bfd/aoutx.h (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol.
* bfd/coffgen.c (coff_make_empty_symbol)
(coff_bfd_make_debug_symbol): Rename variable new to new_symbol.
* bfd/cpu-ia64-opc.c (ext_reg, ins_imms_scaled): Rename variable
new to new_insn.
* bfd/doc/chew.c (newentry, add_intrinsic): Rename variable new to
new_d.
* bfd/ecoff.c (_bfd_ecoff_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/elf32-m68k.c (elf_m68k_get_got_entry_type): Rename argument
new to new_reloc.
* bfd/hash.c (bfd_hash_lookup): Rename variable new to new_string.
* bfd/ieee.c (ieee_make_empty_symbol): Rename variable new to
new_symbol.
* bfd/linker.c (bfd_new_link_order): Rename variable new to
new_lo.
* bfd/mach-o.c (bfd_mach_o_sizeof_headers): Rename variable new to
symbol.
* bfd/oasys.c (oasys_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/pdp11.c (NAME (aout, make_empty_symbol)): Rename variable
new to new_symbol_type.
* bfd/plugin.c (bfd_plugin_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/rs6000-core.c (CoreHdr, VmInfo): Rename union member new to
new_dump.
(read_hdr, rs6000coff_core_p)
(rs6000coff_core_file_matches_executable_p)
(rs6000coff_core_file_failing_command)
(rs6000coff_core_file_failing_signal): Updated function to use new
union member name.
* bfd/som.c (som_make_empty_symbol): Rename variable new to
new_symbol_type.
* bfd/syms.c (_bfd_generic_make_empty_symbol): Rename variable new
to new_symbol.
* bfd/tekhex.c (first_phase, tekhex_make_empty_symbol): Rename
variable new to new_symbol.
* binutils/nlmconv.c (main): Rename variable new to new_name.
* gas/config/tc-arm.c (insert_reg_alias): Rename variable new to
new_reg.
* gas/config/tc-dlx.c (parse_operand): Rename variable new to
new_pos.
* gas/config/tc-ia64.c (ia64_gen_real_reloc_type): Rename variable
new to newr.
* gas/config/tc-mcore.c (parse_exp, parse_imm): Rename variable
new to new_pointer.
* gas/config/tc-microblaze.c (parse_exp, parse_imm, check_got):
Change name from new to new_pointer.
* gas/config/tc-or32.c (parse_operand): Rename variable new to
new_pointer.
* gas/config/tc-pdp11.c (md_assemble): Rename variable new to
new_pointer.
* gas/config/tc-pj.c (alias): Change argument new to new_name.
* gas/config/tc-score.c (s3_build_score_ops_hsh): Rename variable
new to new_opcode. (s3_build_dependency_insn_hsh) Rename variable
new to new_i2n. (s3_convert): Rename variables old and new to
r_old and r_new.
* gas/config/tc-score7.c (s7_build_score_ops_hsh): Rename variable
new to new_opcode. (s7_build_dependency_insn_hsh): Rename variable
new to new_i2d. (s7_b32_relax_to_b16, s7_convert_frag): Rename
variables old and new to r_old and r_new.
* gas/config/tc-sh.c (parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-sh64.c (shmedia_parse_exp): Rename variable new to
new_pointer.
* gas/config/tc-tic4x.c (tic4x_operand_parse): Rename variable new
to new_pointer.
* gas/config/tc-z8k.c (parse_exp): Rename variable new to
new_pointer.
* gas/listing.c (listing_newline): Rename variable new to new_i.
* ld/ldexp.c (exp_intop, exp_bigintop, exp_relop, exp_binop)
(exp_trinop, exp_unop, exp_nameop, exp_assop): Rename variable new
to new_e.
* ld/ldfile.c (ldfile_add_library_path): Rename variable new to
new_dirs. (ldfile_add_arch): Rename variable new to new_arch.
* ld/ldlang.c (new_statement, lang_final, lang_add_wild)
(lang_target, lang_add_fill, lang_add_data, lang_add_assignment)
(lang_add_insert): Rename variable new to new_stmt. (new_afile):
Added missing cast. (lang_memory_region_lookup): Rename variable
new to new_region. (init_os): Rename variable new to
new_userdata. (lang_add_section): Rename variable new to
new_section. (ldlang_add_undef): Rename variable new to
new_undef. (realsymbol): Rename variable new to new_name.
* opcodes/z8kgen.c (internal, gas): Rename variable new to new_op.
Updated sources to avoid using the identifier name "template",
which is a keyword in c++.
* bfd/elf32-arm.c (struct stub_def): Rename member template to
template_sequence. (arm_build_one_stub,
find_stub_size_and_template, arm_size_one_stub, arm_map_one_stub):
Rename variable template to template_sequence.
* bfd/elfxx-ia64.c (elfNN_ia64_relax_br, elfNN_ia64_relax_brl):
Rename variable template to template_val.
* gas/config/tc-arm.c (struct asm_cond, struct asm_psr, struct
asm_barrier_opt): Change member template to
template_name. (md_begin): Update code to reflect new member
names.
* gas/config/tc-i386.c (struct templates, struct _i386_insn)
(match_template, cpu_flags_match, match_reg_size, match_mem_size)
(operand_size_match, md_begin, i386_print_statistics, pi)
(build_vex_prefix, md_assemble, parse_insn, optimize_imm)
(optimize_disp): Updated code to use new names. (parse_insn):
Added casts.
* gas/config/tc-ia64.c (dot_template, emit_one_bundle): Updated
code to use new names.
* gas/config/tc-score.c (struct s3_asm_opcode): Renamed member
template to template_name. (s3_parse_16_32_inst, s3_parse_48_inst,
s3_do_macro_ldst_label, s3_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-score7.c (struct s7_asm_opcode): Renamed member
template to template_name. (s7_parse_16_32_inst,
s7_do_macro_ldst_label, s7_build_score_ops_hsh): Update code to
use new names.
* gas/config/tc-tic30.c (md_begin, struct tic30_insn)
(md_assemble): Update code to use new names.
* gas/config/tc-tic54x.c (struct _tic54x_insn, md_begin)
(optimize_insn, tic54x_parse_insn, next_line_shows_parallel):
Update code to use new names.
* include/opcode/tic30.h (template): Rename type template to
insn_template. Updated code to use new name.
* include/opcode/tic54x.h (template): Rename type template to
insn_template.
* opcodes/cris-dis.c (bytes_to_skip): Update code to use new name.
* opcodes/i386-dis.c (putop): Update code to use new name.
* opcodes/i386-gen.c (process_i386_opcodes): Update code to use
new name.
* opcodes/i386-opc.h (struct template): Rename struct template to
insn_template. Update code accordingly.
* opcodes/i386-tbl.h (i386_optab): Update type to use new name.
* opcodes/ia64-dis.c (print_insn_ia64): Rename variable template
to template_val.
* opcodes/tic30-dis.c (struct instruction, get_tic30_instruction):
Update code to use new name.
* opcodes/tic54x-dis.c (has_lkaddr, get_insn_size)
(print_parallel_instruction, print_insn_tic54x, tic54x_get_insn):
Update code to use new name.
* opcodes/tic54x-opc.c (tic54x_unknown_opcode, tic54x_optab):
Update type to new name.
2009-08-30 00:11:02 +02:00
|
|
|
*search_arch_tail_ptr = new_arch;
|
|
|
|
search_arch_tail_ptr = &new_arch->next;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2000-10-09 17:09:17 +02:00
|
|
|
/* Set the output architecture. */
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
void
|
2004-01-03 12:09:07 +01:00
|
|
|
ldfile_set_output_arch (const char *string, enum bfd_architecture defarch)
|
1999-05-03 09:29:11 +02:00
|
|
|
{
|
2000-07-11 22:17:02 +02:00
|
|
|
const bfd_arch_info_type *arch = bfd_scan_arch (string);
|
|
|
|
|
|
|
|
if (arch)
|
|
|
|
{
|
|
|
|
ldfile_output_architecture = arch->arch;
|
|
|
|
ldfile_output_machine = arch->mach;
|
|
|
|
ldfile_output_machine_name = arch->printable_name;
|
|
|
|
}
|
2004-01-03 12:09:07 +01:00
|
|
|
else if (defarch != bfd_arch_unknown)
|
|
|
|
ldfile_output_architecture = defarch;
|
2000-07-11 22:17:02 +02:00
|
|
|
else
|
2004-01-03 12:09:07 +01:00
|
|
|
einfo (_("%P%F: cannot represent machine `%s'\n"), string);
|
1999-05-03 09:29:11 +02:00
|
|
|
}
|