From 192f9b850184bb882d2367ed9a842500e7519bfa Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Wed, 19 Sep 2007 23:50:56 +0000 Subject: [PATCH] Fix handling of --eh-frame-hdr option. --- gold/options.cc | 2 +- gold/options.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gold/options.cc b/gold/options.cc index 2c0579e07f7..fc3d7c66b23 100644 --- a/gold/options.cc +++ b/gold/options.cc @@ -253,7 +253,7 @@ options::Command_line_options::options[] = N_("-R DIR, -rpath DIR"), ONE_DASH, &General_options::add_to_rpath), GENERAL_NOARG('\0', "eh-frame-hdr", N_("Create exception frame header"), - NULL, TWO_DASHES, &General_options::create_eh_frame_hdr), + NULL, TWO_DASHES, &General_options::set_create_eh_frame_hdr), GENERAL_ARG('\0', "rpath-link", N_("Add DIR to link time shared library search path"), N_("--rpath-link DIR"), TWO_DASHES, diff --git a/gold/options.h b/gold/options.h index 3521f084f4a..f1f21e041fd 100644 --- a/gold/options.h +++ b/gold/options.h @@ -118,7 +118,7 @@ class General_options { this->is_relocatable_ = true; } void - create_eh_frame_hdr() + set_create_eh_frame_hdr() { this->create_eh_frame_hdr_ = true; } void -- 2.30.2