summaryrefslogtreecommitdiffstats
path: root/binutils-2.25/gold/options.h
diff options
context:
space:
mode:
Diffstat (limited to 'binutils-2.25/gold/options.h')
-rw-r--r--binutils-2.25/gold/options.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/binutils-2.25/gold/options.h b/binutils-2.25/gold/options.h
index cf3b7056..0d0072bc 100644
--- a/binutils-2.25/gold/options.h
+++ b/binutils-2.25/gold/options.h
@@ -1,6 +1,6 @@
// options.h -- handle command line options for gold -*- C++ -*-
-// Copyright (C) 2006-2014 Free Software Foundation, Inc.
+// Copyright (C) 2006-2015 Free Software Foundation, Inc.
// Written by Ian Lance Taylor <iant@google.com>.
// This file is part of gold.
@@ -1272,6 +1272,9 @@ class General_options
NULL);
DEFINE_bool(execstack, options::DASH_Z, '\0', false,
N_("Mark output as requiring executable stack"), NULL);
+ DEFINE_bool(global, options::DASH_Z, '\0', false,
+ N_("Make symbols in DSO available for subsequently loaded "
+ "objects"), NULL);
DEFINE_bool(initfirst, options::DASH_Z, '\0', false,
N_("Mark DSO to be initialized first at runtime"),
NULL);
@@ -1324,6 +1327,9 @@ class General_options
N_("Permit relocations in read-only segments (default)"),
NULL, true);
+ DEFINE_bool(fix_cortex_a53_835769, options::TWO_DASHES, '\0', false,
+ N_("Ignored for now"), NULL);
+
public:
typedef options::Dir_list Dir_list;