aboutsummaryrefslogtreecommitdiff
path: root/gold/options.h
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2017-08-21 11:34:06 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2017-08-21 11:34:06 -0300
commitf3ae7dbacf5aeb9df207f5dacd778a2f6eab24fc (patch)
tree007fb5f9f137a4cb155cbf457fcd3ae320c2e6f4 /gold/options.h
parent1d72c7445857652f3eb423f2702bc5981580fb63 (diff)
parentb5d3ac25628b1a16409a9816623c34a45377d400 (diff)
downloadgdb-users/linaro/binutils-2_27-branch.zip
gdb-users/linaro/binutils-2_27-branch.tar.gz
gdb-users/linaro/binutils-2_27-branch.tar.bz2
Merge with binutils-2_27-branch rev b5d3ac20users/linaro/binutils-2_27-branch
Change-Id: Iaa5f379bb904c3eb5b6e041c62c24076d2838063
Diffstat (limited to 'gold/options.h')
-rw-r--r--gold/options.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/gold/options.h b/gold/options.h
index 4c5b2ae..6786e93 100644
--- a/gold/options.h
+++ b/gold/options.h
@@ -1069,6 +1069,9 @@ class General_options
DEFINE_special(section_start, options::TWO_DASHES, '\0',
N_("Set address of section"), N_("SECTION=ADDRESS"));
+ DEFINE_bool(secure_plt, options::TWO_DASHES , '\0', true,
+ N_("(PowerPC only) Use new-style PLT"), NULL);
+
DEFINE_optional_string(sort_common, options::TWO_DASHES, '\0', NULL,
N_("Sort common symbols by alignment"),
N_("[={ascending,descending}]"));
@@ -1097,11 +1100,14 @@ class General_options
DEFINE_int(stub_group_size, options::TWO_DASHES , '\0', 1,
N_("(ARM, PowerPC only) The maximum distance from instructions "
- "in a group of sections to their stubs. Negative values mean "
- "stubs are always after (PowerPC before) the group. 1 means "
- "use default size.\n"),
+ "in a group of sections to their stubs. Negative values mean "
+ "stubs are always after the group. 1 means use default size"),
N_("SIZE"));
+ DEFINE_bool(stub_group_multi, options::TWO_DASHES, '\0', false,
+ N_("(PowerPC only) Allow a group of stubs to serve multiple "
+ "output sections"), NULL);
+
DEFINE_bool(no_keep_memory, options::TWO_DASHES, '\0', false,
N_("Use less memory and more disk I/O "
"(included only for compatibility with GNU ld)"), NULL);