This is the mail archive of the
binutils@sourceware.org
mailing list for the binutils project.
[PATCH] gold: Add --no-relax option
- From: James Clarke <jrtc27 at jrtc27 dot com>
- To: binutils at sourceware dot org
- Cc: James Clarke <jrtc27 at jrtc27 dot com>
- Date: Sat, 15 Jul 2017 22:46:09 +0100
- Subject: [PATCH] gold: Add --no-relax option
- Authentication-results: sourceware.org; auth=none
gold/
* options.h (General_options): Set a non-NULL second help string
argument for relax to allow --no-relax.
---
gold/options.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gold/options.h b/gold/options.h
index c7c032bbd7..e9fbdec36e 100644
--- a/gold/options.h
+++ b/gold/options.h
@@ -1164,7 +1164,8 @@ class General_options
N_("Generate relocatable output"), NULL);
DEFINE_bool(relax, options::TWO_DASHES, '\0', false,
- N_("Relax branches on certain targets"), NULL);
+ N_("Relax branches on certain targets"),
+ N_("Do not relax branches"));
DEFINE_string(retain_symbols_file, options::TWO_DASHES, '\0', NULL,
N_("keep only symbols listed in this file"), N_("FILE"));
--
2.13.3