From 7c96e6120f1b9b5025629bbe995ca55d1be8f36f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Sat, 15 May 2021 14:13:47 +0930 Subject: [PATCH] [GOLD]: Re: Add -Bno-symbolic PR 27834 * options.cc (General_options::General_options): Init bsymbolic_. --- gold/ChangeLog | 5 +++++ gold/options.cc | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/gold/ChangeLog b/gold/ChangeLog index c68f282e9b..5897b10aee 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2021-05-15 Alan Modra + + PR 27834 + * options.cc (General_options::General_options): Init bsymbolic_. + 2021-05-04 Fangrui Song PR 27834 diff --git a/gold/options.cc b/gold/options.cc index 1818e5dc34..5a55bd8ba6 100644 --- a/gold/options.cc +++ b/gold/options.cc @@ -1008,7 +1008,8 @@ namespace gold { General_options::General_options() - : printed_version_(false), + : bsymbolic_(BSYMBOLIC_NONE), + printed_version_(false), execstack_status_(EXECSTACK_FROM_INPUT), icf_status_(ICF_NONE), static_(false), -- 2.34.1