PR gold/12525

* options.h (class General_options): Add -dy and -dn.
This commit is contained in:
Ian Lance Taylor 2011-03-07 22:51:39 +00:00
parent 967d1f9b81
commit b821d13c6d
2 changed files with 9 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2011-03-07 Ian Lance Taylor <iant@google.com>
PR gold/12525
* options.h (class General_options): Add -dy and -dn.
2011-03-02 Cary Coutant <ccoutant@google.com>
* testsuite/script_test_9.t: Add TLS segment.

View file

@ -623,6 +623,10 @@ class General_options
DEFINE_bool_alias(Bstatic, Bdynamic, options::ONE_DASH, '\0',
N_("-l does not search for shared libraries"), NULL,
true);
DEFINE_bool_alias(dy, Bdynamic, options::ONE_DASH, '\0',
N_("alias for -Bdynamic"), NULL, false);
DEFINE_bool_alias(dn, Bdynamic, options::ONE_DASH, '\0',
N_("alias for -Bstatic"), NULL, true);
DEFINE_bool(Bsymbolic, options::ONE_DASH, '\0', false,
N_("Bind defined symbols locally"), NULL);