1999-05-03 09:29:11 +02:00
|
|
|
/* ld.h -- general linker header file
|
2005-03-03 12:52:12 +01:00
|
|
|
Copyright 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
PR ld/13343
* ld.h (parsing_defsym): Delete.
* ldexp.c (exp_intop, exp_bigintop, exp_relop): Set type.filename.
(fold_binary, fold_name, exp_fold_tree_1, exp_get_vma, exp_get_fill,
exp_get_abs_int): Add tree arg for %S in error messages. Don't
fudge lineno.
(exp_binop, exp_unop, exp_nameop, exp_assop, exp_assert): Copy
type.filename from sub-tree.
(exp_trinop): Likewise, and use "cond" rather than "lhs".
* ldexp.h (node_type): Add filename field to struct.
* ldfile.c (ldfile_input_filename): Delete. Remove all refs.
* ldfile.h (ldfile_input_filename): Delete.
* ldgram.y (phdr_type, phdr_qualifiers, yyerror): Add NULL arg for
%S in error messages.
* ldemul.c (syslib_default, hll_default): Likewise.
* ldlang.c (lang_memory_region_lookup, lang_memory_region_alias,
lang_get_regions, lang_new_phdr): Likewise.
(lang_size_sections_1): Pass addr_tree for %S.
* ldlex.h (lex_redirect): Update prototype.
(ldlex_filename): Declare.
* ldlex.l (<EOF>): Don't set ldfile_input_filename.
(lex_redirect): Add fake_filename and count params. Push
fake_filename to file_name_stack and init lineno from count.
(ldlex_filename): New function.
(lex_warn_invalid): Use above.
* ldmain.c (main): Update lex_redirect call.
* ldmisc.c (vfinfo <%S>): Take file name and line number from
etree_type arg, or use current if arg is NULL.
* lexsup.c (parsing_defsym): Delete.
(parse_args <OPTION_DEFSYM>): Update lex_redirect call.
2012-02-17 15:09:57 +01:00
|
|
|
2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
|
1999-05-03 09:29:11 +02:00
|
|
|
Free Software Foundation, Inc.
|
|
|
|
|
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
|
1999-05-03 09:29:11 +02: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,
|
1999-05-03 09:29:11 +02: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.
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
#ifndef LD_H
|
|
|
|
#define LD_H
|
|
|
|
|
|
|
|
#ifdef HAVE_LOCALE_H
|
2005-09-30 13:42:05 +02:00
|
|
|
#endif
|
|
|
|
#ifndef SEEK_CUR
|
|
|
|
#define SEEK_CUR 1
|
|
|
|
#endif
|
|
|
|
#ifndef SEEK_END
|
|
|
|
#define SEEK_END 2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_LOCALE_H
|
|
|
|
# ifndef ENABLE_NLS
|
|
|
|
/* The Solaris version of locale.h always includes libintl.h. If we have
|
|
|
|
been configured with --disable-nls then ENABLE_NLS will not be defined
|
|
|
|
and the dummy definitions of bindtextdomain (et al) below will conflict
|
|
|
|
with the defintions in libintl.h. So we define these values to prevent
|
|
|
|
the bogus inclusion of libintl.h. */
|
|
|
|
# define _LIBINTL_H
|
|
|
|
# define _LIBGETTEXT_H
|
|
|
|
# endif
|
1999-05-03 09:29:11 +02:00
|
|
|
# include <locale.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef ENABLE_NLS
|
|
|
|
# include <libintl.h>
|
|
|
|
# define _(String) gettext (String)
|
|
|
|
# ifdef gettext_noop
|
|
|
|
# define N_(String) gettext_noop (String)
|
|
|
|
# else
|
|
|
|
# define N_(String) (String)
|
|
|
|
# endif
|
|
|
|
#else
|
2000-05-13 15:05:36 +02:00
|
|
|
# define gettext(Msgid) (Msgid)
|
|
|
|
# define dgettext(Domainname, Msgid) (Msgid)
|
|
|
|
# define dcgettext(Domainname, Msgid, Category) (Msgid)
|
|
|
|
# define textdomain(Domainname) while (0) /* nothing */
|
|
|
|
# define bindtextdomain(Domainname, Dirname) while (0) /* nothing */
|
1999-05-03 09:29:11 +02:00
|
|
|
# define _(String) (String)
|
|
|
|
# define N_(String) (String)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Look in this environment name for the linker to pretend to be */
|
|
|
|
#define EMULATION_ENVIRON "LDEMULATION"
|
|
|
|
/* If in there look for the strings: */
|
|
|
|
|
|
|
|
/* Look in this variable for a target format */
|
|
|
|
#define TARGET_ENVIRON "GNUTARGET"
|
|
|
|
|
|
|
|
/* Input sections which are put in a section of this name are actually
|
|
|
|
discarded. */
|
|
|
|
#define DISCARD_SECTION_NAME "/DISCARD/"
|
|
|
|
|
2000-01-05 15:12:23 +01:00
|
|
|
/* A file name list */
|
2000-10-09 17:09:17 +02:00
|
|
|
typedef struct name_list {
|
|
|
|
const char *name;
|
|
|
|
struct name_list *next;
|
|
|
|
}
|
|
|
|
name_list;
|
2000-01-05 15:12:23 +01:00
|
|
|
|
2008-05-31 18:35:56 +02:00
|
|
|
typedef enum {sort_none, sort_ascending, sort_descending} sort_order;
|
|
|
|
|
2004-10-04 18:45:51 +02:00
|
|
|
/* A wildcard specification. */
|
|
|
|
|
|
|
|
typedef enum {
|
2010-12-15 15:56:40 +01:00
|
|
|
none, by_name, by_alignment, by_name_alignment, by_alignment_name,
|
2012-07-10 08:50:57 +02:00
|
|
|
by_none, by_init_priority
|
2004-10-04 18:45:51 +02:00
|
|
|
} sort_type;
|
|
|
|
|
|
|
|
extern sort_type sort_section;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-10-09 17:09:17 +02:00
|
|
|
struct wildcard_spec {
|
1999-05-03 09:29:11 +02:00
|
|
|
const char *name;
|
2000-01-05 15:12:23 +01:00
|
|
|
struct name_list *exclude_name_list;
|
2004-10-04 18:45:51 +02:00
|
|
|
sort_type sorted;
|
2011-07-11 17:03:09 +02:00
|
|
|
struct flag_info *section_flag_list;
|
1999-05-03 09:29:11 +02:00
|
|
|
};
|
|
|
|
|
2001-08-03 03:11:21 +02:00
|
|
|
struct wildcard_list {
|
|
|
|
struct wildcard_list *next;
|
|
|
|
struct wildcard_spec spec;
|
|
|
|
};
|
|
|
|
|
2004-05-19 16:15:55 +02:00
|
|
|
struct map_symbol_def {
|
|
|
|
struct bfd_link_hash_entry *entry;
|
|
|
|
struct map_symbol_def *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* The initial part of fat_user_section_struct has to be idential with
|
|
|
|
lean_user_section_struct. */
|
|
|
|
typedef struct fat_user_section_struct {
|
|
|
|
/* For input sections, when writing a map file: head / tail of a linked
|
|
|
|
list of hash table entries for symbols defined in this section. */
|
|
|
|
struct map_symbol_def *map_symbol_def_head;
|
|
|
|
struct map_symbol_def **map_symbol_def_tail;
|
2009-08-12 14:40:55 +02:00
|
|
|
unsigned long map_symbol_def_count;
|
2004-05-19 16:15:55 +02:00
|
|
|
} fat_section_userdata_type;
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#define get_userdata(x) ((x)->userdata)
|
|
|
|
|
|
|
|
#define BYTE_SIZE (1)
|
|
|
|
#define SHORT_SIZE (2)
|
|
|
|
#define LONG_SIZE (4)
|
|
|
|
#define QUAD_SIZE (8)
|
|
|
|
|
2009-09-11 17:27:38 +02:00
|
|
|
enum endian_enum { ENDIAN_UNSET = 0, ENDIAN_BIG, ENDIAN_LITTLE };
|
|
|
|
|
|
|
|
enum symbolic_enum
|
|
|
|
{
|
|
|
|
symbolic_unset = 0,
|
|
|
|
symbolic,
|
|
|
|
symbolic_functions,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum dynamic_list_enum
|
|
|
|
{
|
|
|
|
dynamic_list_unset = 0,
|
|
|
|
dynamic_list_data,
|
|
|
|
dynamic_list
|
|
|
|
};
|
|
|
|
|
2000-10-09 17:09:17 +02:00
|
|
|
typedef struct {
|
1999-05-03 09:29:11 +02:00
|
|
|
/* 1 => assign space to common symbols even if `relocatable_output'. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean force_common_definition;
|
2001-09-29 14:57:54 +02:00
|
|
|
|
2002-05-03 15:48:55 +02:00
|
|
|
/* 1 => do not assign addresses to common symbols. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean inhibit_common_definition;
|
2009-11-26 14:45:25 +01:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, build MIPS embedded PIC relocation tables in the output
|
1999-05-03 09:29:11 +02:00
|
|
|
file. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean embedded_relocs;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, force generation of a file with a .exe file. */
|
|
|
|
bfd_boolean force_exe_suffix;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, generate a cross reference report. */
|
|
|
|
bfd_boolean cref;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE (which is the default), warn about mismatched input
|
1999-05-03 09:29:11 +02:00
|
|
|
files. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean warn_mismatch;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2007-05-03 11:24:16 +02:00
|
|
|
/* Warn on attempting to open an incompatible library during a library
|
|
|
|
search. */
|
|
|
|
bfd_boolean warn_search_mismatch;
|
|
|
|
|
2009-01-26 16:23:39 +01:00
|
|
|
/* If non-zero check section addresses, once computed,
|
|
|
|
for overlaps. Relocatable links only check when this is > 0. */
|
|
|
|
signed char check_section_addresses;
|
2000-09-29 15:21:41 +02:00
|
|
|
|
2002-12-23 11:45:03 +01:00
|
|
|
/* If TRUE allow the linking of input files in an unknown architecture
|
|
|
|
assuming that the user knows what they are doing. This was the old
|
|
|
|
behaviour of the linker. The new default behaviour is to reject such
|
|
|
|
input files. */
|
|
|
|
bfd_boolean accept_unknown_input_arch;
|
2007-01-19 16:13:29 +01:00
|
|
|
|
2011-07-16 09:58:40 +02:00
|
|
|
/* If TRUE we'll just print the default output on stdout. */
|
|
|
|
bfd_boolean print_output_format;
|
|
|
|
|
2007-05-07 17:04:53 +02:00
|
|
|
/* Big or little endian as set on command line. */
|
2009-09-11 17:27:38 +02:00
|
|
|
enum endian_enum endian;
|
2007-05-07 17:04:53 +02:00
|
|
|
|
2007-01-19 16:13:29 +01:00
|
|
|
/* -Bsymbolic and -Bsymbolic-functions, as set on command line. */
|
2009-09-11 17:27:38 +02:00
|
|
|
enum symbolic_enum symbolic;
|
2007-01-19 16:13:29 +01:00
|
|
|
|
|
|
|
/* --dynamic-list, --dynamic-list-cpp-new, --dynamic-list-cpp-typeinfo
|
|
|
|
and --dynamic-list FILE, as set on command line. */
|
2009-09-11 17:27:38 +02:00
|
|
|
enum dynamic_list_enum dynamic_list;
|
2007-05-07 17:04:53 +02:00
|
|
|
|
|
|
|
/* Name of runtime interpreter to invoke. */
|
|
|
|
char *interpreter;
|
|
|
|
|
|
|
|
/* Name to give runtime libary from the -soname argument. */
|
|
|
|
char *soname;
|
|
|
|
|
|
|
|
/* Runtime library search path from the -rpath argument. */
|
|
|
|
char *rpath;
|
|
|
|
|
|
|
|
/* Link time runtime library search path from the -rpath-link
|
|
|
|
argument. */
|
|
|
|
char *rpath_link;
|
|
|
|
|
|
|
|
/* Name of shared object whose symbol table should be filtered with
|
|
|
|
this shared object. From the --filter option. */
|
|
|
|
char *filter_shlib;
|
|
|
|
|
|
|
|
/* Name of shared object for whose symbol table this shared object
|
|
|
|
is an auxiliary filter. From the --auxiliary option. */
|
|
|
|
char **auxiliary_filters;
|
|
|
|
|
|
|
|
/* A version symbol to be applied to the symbol names found in the
|
|
|
|
.exports sections. */
|
|
|
|
char *version_exports_section;
|
|
|
|
|
|
|
|
/* Default linker script. */
|
|
|
|
char *default_script;
|
1999-05-03 09:29:11 +02:00
|
|
|
} args_type;
|
|
|
|
|
|
|
|
extern args_type command_line;
|
|
|
|
|
|
|
|
typedef int token_code_type;
|
|
|
|
|
2000-10-09 17:09:17 +02:00
|
|
|
typedef struct {
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean magic_demand_paged;
|
|
|
|
bfd_boolean make_executable;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, -shared is supported. */
|
1999-05-03 09:29:11 +02:00
|
|
|
/* ??? A better way to do this is perhaps to define this in the
|
|
|
|
ld_emulation_xfer_struct since this is really a target dependent
|
|
|
|
parameter. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean has_shared;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, build constructors. */
|
|
|
|
bfd_boolean build_constructors;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, warn about any constructors. */
|
|
|
|
bfd_boolean warn_constructors;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, warn about merging common symbols with others. */
|
|
|
|
bfd_boolean warn_common;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, only warn once about a particular undefined symbol. */
|
|
|
|
bfd_boolean warn_once;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, warn if multiple global-pointers are needed (Alpha
|
1999-05-03 09:29:11 +02:00
|
|
|
only). */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean warn_multiple_gp;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, warn if the starting address of an output section
|
1999-05-03 09:29:11 +02:00
|
|
|
changes due to the alignment of an input section. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean warn_section_align;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
/* If TRUE, warning messages are fatal */
|
|
|
|
bfd_boolean fatal_warnings;
|
2001-04-13 04:22:23 +02:00
|
|
|
|
2008-05-31 18:35:56 +02:00
|
|
|
sort_order sort_common;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean text_read_only;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean stats;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2000-09-05 05:05:19 +02:00
|
|
|
/* If set, orphan input sections will be mapped to separate output
|
|
|
|
sections. */
|
2002-11-30 09:39:46 +01:00
|
|
|
bfd_boolean unique_orphan_sections;
|
2000-09-05 05:05:19 +02:00
|
|
|
|
2007-05-07 17:04:53 +02:00
|
|
|
/* If set, only search library directories explicitly selected
|
|
|
|
on the command line. */
|
|
|
|
bfd_boolean only_cmd_line_lib_dirs;
|
2001-11-02 02:13:09 +01:00
|
|
|
|
2011-01-13 14:29:55 +01:00
|
|
|
/* If set, numbers and absolute symbols are simply treated as
|
|
|
|
numbers everywhere. */
|
|
|
|
bfd_boolean sane_expr;
|
|
|
|
|
2007-03-28 16:42:28 +02:00
|
|
|
/* The rpath separation character. Usually ':'. */
|
|
|
|
char rpath_separator;
|
|
|
|
|
2007-05-07 17:04:53 +02:00
|
|
|
char *map_filename;
|
|
|
|
FILE *map_file;
|
|
|
|
|
|
|
|
unsigned int split_by_reloc;
|
|
|
|
bfd_size_type split_by_file;
|
|
|
|
|
|
|
|
bfd_size_type specified_data_size;
|
2004-05-21 17:38:04 +02:00
|
|
|
|
|
|
|
/* The size of the hash table to use. */
|
2011-04-20 14:52:16 +02:00
|
|
|
unsigned long hash_table_size;
|
2006-05-30 18:45:32 +02:00
|
|
|
|
|
|
|
/* The maximum page size for ELF. */
|
|
|
|
bfd_vma maxpagesize;
|
|
|
|
|
|
|
|
/* The common page size for ELF. */
|
|
|
|
bfd_vma commonpagesize;
|
1999-05-03 09:29:11 +02:00
|
|
|
} ld_config_type;
|
|
|
|
|
|
|
|
extern ld_config_type config;
|
|
|
|
|
2001-08-12 09:59:28 +02:00
|
|
|
extern FILE * saved_script_handle;
|
2002-11-30 09:39:46 +01:00
|
|
|
extern bfd_boolean force_make_executable;
|
1999-05-03 09:29:11 +02:00
|
|
|
|
2003-06-28 07:28:54 +02:00
|
|
|
extern int yyparse (void);
|
|
|
|
extern void add_cref (const char *, bfd *, asection *, bfd_vma);
|
2006-07-19 03:50:23 +02:00
|
|
|
extern bfd_boolean handle_asneeded_cref (bfd *, enum notice_asneeded_action);
|
2003-06-28 07:28:54 +02:00
|
|
|
extern void output_cref (FILE *);
|
|
|
|
extern void check_nocrossrefs (void);
|
|
|
|
extern void ld_abort (const char *, int, const char *) ATTRIBUTE_NORETURN;
|
1999-09-12 18:59:49 +02:00
|
|
|
|
2000-04-29 02:56:29 +02:00
|
|
|
/* If gcc >= 2.6, we can give a function name, too. */
|
|
|
|
#if __GNUC__ < 2 || (__GNUC__ == 2 && __GNUC_MINOR__ < 6)
|
2003-06-28 07:28:54 +02:00
|
|
|
#define __PRETTY_FUNCTION__ NULL
|
1999-09-12 18:59:49 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#undef abort
|
|
|
|
#define abort() ld_abort (__FILE__, __LINE__, __PRETTY_FUNCTION__)
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#endif
|