1999-05-03 09:29:11 +02:00
|
|
|
/* ld.h -- general linker header file
|
2016-01-01 12:25:12 +01:00
|
|
|
Copyright (C) 1991-2016 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
|
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/"
|
|
|
|
|
2016-02-25 11:33:29 +01:00
|
|
|
/* A file name list. */
|
|
|
|
typedef struct name_list
|
|
|
|
{
|
2000-10-09 17:09:17 +02:00
|
|
|
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;
|
2012-11-21 20:56:38 +01:00
|
|
|
|
2004-10-04 18:45:51 +02:00
|
|
|
/* A wildcard specification. */
|
|
|
|
|
2016-02-25 11:33:29 +01:00
|
|
|
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
|
|
|
|
2016-02-25 11:33:29 +01: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
|
|
|
};
|
|
|
|
|
2016-02-25 11:33:29 +01:00
|
|
|
struct wildcard_list
|
|
|
|
{
|
2001-08-03 03:11:21 +02:00
|
|
|
struct wildcard_list *next;
|
|
|
|
struct wildcard_spec spec;
|
|
|
|
};
|
|
|
|
|
1999-05-03 09:29:11 +02:00
|
|
|
#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
|
2016-02-25 11:33:29 +01:00
|
|
|
{
|
|
|
|
symbolic_unset = 0,
|
|
|
|
symbolic,
|
|
|
|
symbolic_functions,
|
|
|
|
};
|
2009-09-11 17:27:38 +02:00
|
|
|
|
|
|
|
enum dynamic_list_enum
|
2016-02-25 11:33:29 +01:00
|
|
|
{
|
|
|
|
dynamic_list_unset = 0,
|
|
|
|
dynamic_list_data,
|
|
|
|
dynamic_list
|
|
|
|
};
|
2009-09-11 17:27:38 +02:00
|
|
|
|
2016-02-25 11:33:29 +01: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
|
|
|
|
2016-07-15 18:49:08 +02:00
|
|
|
/* Name of the import library to generate. */
|
|
|
|
char *out_implib_filename;
|
|
|
|
|
2011-07-16 09:58:40 +02:00
|
|
|
/* If TRUE we'll just print the default output on stdout. */
|
|
|
|
bfd_boolean print_output_format;
|
|
|
|
|
2015-06-05 15:09:31 +02:00
|
|
|
/* If set, display the target memory usage (per memory region). */
|
|
|
|
bfd_boolean print_memory_usage;
|
|
|
|
|
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;
|
|
|
|
|
ld: Extend options for altering orphan handling behaviour.
Replace the options --warn-orphan and --no-warn-orphan with a single
option --orphan-handling=MODE, where mode can be place, warn, error, and
discard.
Mode 'place' is the default, and is the current behaviour, placing the
orphan section into a suitable output section.
Mode 'warn' is the same as '--warn-orphan'. The orphan is also placed
using the same algorithm as for 'place'.
Mode 'error' is the same as '--warn-orphan' and '--fatal-warnings'.
Mode 'discard' assigns all output sections to the /DISCARD/ section.
ld/ChangeLog:
* ld.h (enum orphan_handling_enum): New.
(ld_config_type): Remove warn_orphan, add orphan_handling.
* ldemul.c (ldemul_place_orphan): Remove warning about orphan
sections.
* ldlang.c (ldlang_place_orphan): New function.
(lang_place_orphans): Call ldlang_place_orphan.
* ldlex.h (enum option_values): Remove OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add OPTION_ORPHAN_HANDLING.
* lexsup.c (ld_options): Remove 'warn-orphan' and
'no-warn-orphan', add 'orphan-handling'.
(parse_args): Remove handling for OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add handling for OPTION_ORPHAN_HANDLING.
* NEWS: Replace text about --warn-orphan with --orphan-handling.
* ld.texinfo (Options): Remove --warn-orphan entry and add
entry on --orphan-handling.
(Orphan Sections): Add reference to relevant command line options.
ld/testsuite/ChangeLog:
* ld-elf/elf.exp: Switch to rely on run_dump_test.
* ld-elf/orphan-5.l: Update expected output.
* ld-elf/orphan-5.d: New file.
* ld-elf/orphan-6.d: New file.
* ld-elf/orphan-6.l: New file.
* ld-elf/orphan-7.d: New file.
* ld-elf/orphan-7.map: New file.
* ld-elf/orphan-8.d: New file.
* ld-elf/orphan-8.map: New file.
2015-07-28 20:20:37 +02:00
|
|
|
/* Different ways we can handle orphan sections. */
|
|
|
|
|
2016-02-25 11:33:29 +01:00
|
|
|
enum orphan_handling_enum
|
|
|
|
{
|
ld: Extend options for altering orphan handling behaviour.
Replace the options --warn-orphan and --no-warn-orphan with a single
option --orphan-handling=MODE, where mode can be place, warn, error, and
discard.
Mode 'place' is the default, and is the current behaviour, placing the
orphan section into a suitable output section.
Mode 'warn' is the same as '--warn-orphan'. The orphan is also placed
using the same algorithm as for 'place'.
Mode 'error' is the same as '--warn-orphan' and '--fatal-warnings'.
Mode 'discard' assigns all output sections to the /DISCARD/ section.
ld/ChangeLog:
* ld.h (enum orphan_handling_enum): New.
(ld_config_type): Remove warn_orphan, add orphan_handling.
* ldemul.c (ldemul_place_orphan): Remove warning about orphan
sections.
* ldlang.c (ldlang_place_orphan): New function.
(lang_place_orphans): Call ldlang_place_orphan.
* ldlex.h (enum option_values): Remove OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add OPTION_ORPHAN_HANDLING.
* lexsup.c (ld_options): Remove 'warn-orphan' and
'no-warn-orphan', add 'orphan-handling'.
(parse_args): Remove handling for OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add handling for OPTION_ORPHAN_HANDLING.
* NEWS: Replace text about --warn-orphan with --orphan-handling.
* ld.texinfo (Options): Remove --warn-orphan entry and add
entry on --orphan-handling.
(Orphan Sections): Add reference to relevant command line options.
ld/testsuite/ChangeLog:
* ld-elf/elf.exp: Switch to rely on run_dump_test.
* ld-elf/orphan-5.l: Update expected output.
* ld-elf/orphan-5.d: New file.
* ld-elf/orphan-6.d: New file.
* ld-elf/orphan-6.l: New file.
* ld-elf/orphan-7.d: New file.
* ld-elf/orphan-7.map: New file.
* ld-elf/orphan-8.d: New file.
* ld-elf/orphan-8.map: New file.
2015-07-28 20:20:37 +02:00
|
|
|
/* The classic strategy, find a suitable section to place the orphan
|
|
|
|
into. */
|
|
|
|
orphan_handling_place = 0,
|
|
|
|
|
|
|
|
/* Discard any orphan sections as though they were assign to the section
|
|
|
|
/DISCARD/. */
|
|
|
|
orphan_handling_discard,
|
|
|
|
|
|
|
|
/* Find somewhere to place the orphan section, as with
|
|
|
|
ORPHAN_HANDLING_PLACE, but also issue a warning. */
|
|
|
|
orphan_handling_warn,
|
|
|
|
|
|
|
|
/* Issue a fatal error if any orphan sections are found. */
|
|
|
|
orphan_handling_error,
|
|
|
|
};
|
|
|
|
|
2016-02-25 11:33:29 +01: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
|
|
|
|
ld: Extend options for altering orphan handling behaviour.
Replace the options --warn-orphan and --no-warn-orphan with a single
option --orphan-handling=MODE, where mode can be place, warn, error, and
discard.
Mode 'place' is the default, and is the current behaviour, placing the
orphan section into a suitable output section.
Mode 'warn' is the same as '--warn-orphan'. The orphan is also placed
using the same algorithm as for 'place'.
Mode 'error' is the same as '--warn-orphan' and '--fatal-warnings'.
Mode 'discard' assigns all output sections to the /DISCARD/ section.
ld/ChangeLog:
* ld.h (enum orphan_handling_enum): New.
(ld_config_type): Remove warn_orphan, add orphan_handling.
* ldemul.c (ldemul_place_orphan): Remove warning about orphan
sections.
* ldlang.c (ldlang_place_orphan): New function.
(lang_place_orphans): Call ldlang_place_orphan.
* ldlex.h (enum option_values): Remove OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add OPTION_ORPHAN_HANDLING.
* lexsup.c (ld_options): Remove 'warn-orphan' and
'no-warn-orphan', add 'orphan-handling'.
(parse_args): Remove handling for OPTION_WARN_ORPHAN and
OPTION_NO_WARN_ORPHAN, add handling for OPTION_ORPHAN_HANDLING.
* NEWS: Replace text about --warn-orphan with --orphan-handling.
* ld.texinfo (Options): Remove --warn-orphan entry and add
entry on --orphan-handling.
(Orphan Sections): Add reference to relevant command line options.
ld/testsuite/ChangeLog:
* ld-elf/elf.exp: Switch to rely on run_dump_test.
* ld-elf/orphan-5.l: Update expected output.
* ld-elf/orphan-5.d: New file.
* ld-elf/orphan-6.d: New file.
* ld-elf/orphan-6.l: New file.
* ld-elf/orphan-7.d: New file.
* ld-elf/orphan-7.map: New file.
* ld-elf/orphan-8.d: New file.
* ld-elf/orphan-8.map: New file.
2015-07-28 20:20:37 +02:00
|
|
|
/* How should we deal with orphan sections. */
|
|
|
|
enum orphan_handling_enum orphan_handling;
|
2015-04-07 17:29:41 +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;
|
|
|
|
|
2012-11-21 20:56:38 +01:00
|
|
|
/* If set, code and non-code sections should never be in one segment. */
|
|
|
|
bfd_boolean separate_code;
|
|
|
|
|
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;
|
|
|
|
|
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
|