mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-25 04:49:54 +08:00
* options.h (class General_options): Redefine -z lazy as an alias for
the negation of -z now.
This commit is contained in:
@ -1,3 +1,8 @@
|
|||||||
|
2010-10-11 Cary Coutant <ccoutant@google.com>
|
||||||
|
|
||||||
|
* options.h (class General_options): Redefine -z lazy as an alias for
|
||||||
|
the negation of -z now.
|
||||||
|
|
||||||
2010-10-11 Ian Lance Taylor <iant@google.com>
|
2010-10-11 Ian Lance Taylor <iant@google.com>
|
||||||
|
|
||||||
* resolve.cc (symbol_to_bits): Report the value of the unsupported
|
* resolve.cc (symbol_to_bits): Report the value of the unsupported
|
||||||
|
@ -1097,9 +1097,9 @@ class General_options
|
|||||||
DEFINE_bool(interpose, options::DASH_Z, '\0', false,
|
DEFINE_bool(interpose, options::DASH_Z, '\0', false,
|
||||||
N_("Mark object to interpose all DSOs but executable"),
|
N_("Mark object to interpose all DSOs but executable"),
|
||||||
NULL);
|
NULL);
|
||||||
DEFINE_bool(lazy, options::DASH_Z, '\0', false,
|
DEFINE_bool_alias(lazy, now, options::DASH_Z, '\0',
|
||||||
N_("Mark object for lazy runtime binding (default)"),
|
N_("Mark object for lazy runtime binding (default)"),
|
||||||
NULL);
|
NULL, true);
|
||||||
DEFINE_bool(loadfltr, options::DASH_Z, '\0', false,
|
DEFINE_bool(loadfltr, options::DASH_Z, '\0', false,
|
||||||
N_("Mark object requiring immediate process"),
|
N_("Mark object requiring immediate process"),
|
||||||
NULL);
|
NULL);
|
||||||
|
Reference in New Issue
Block a user