From ac34ccbcc52acfc97443ab3daee2fdc95b582a1f Mon Sep 17 00:00:00 2001 From: Alan Modra Date: Mon, 28 Jan 2013 09:31:01 +0000 Subject: * objcopy.c (parse_flags): Add merge and strings section flags. --- binutils/objcopy.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'binutils/objcopy.c') diff --git a/binutils/objcopy.c b/binutils/objcopy.c index ff80431572..1200eb6270 100644 --- a/binutils/objcopy.c +++ b/binutils/objcopy.c @@ -690,6 +690,8 @@ parse_flags (const char *s) PARSE_FLAG ("rom", SEC_ROM); PARSE_FLAG ("share", SEC_COFF_SHARED); PARSE_FLAG ("contents", SEC_HAS_CONTENTS); + PARSE_FLAG ("merge", SEC_MERGE); + PARSE_FLAG ("strings", SEC_STRINGS); #undef PARSE_FLAG else { @@ -700,7 +702,7 @@ parse_flags (const char *s) copy[len] = '\0'; non_fatal (_("unrecognized section flag `%s'"), copy); fatal (_("supported flags: %s"), - "alloc, load, noload, readonly, debug, code, data, rom, share, contents"); + "alloc, load, noload, readonly, debug, code, data, rom, share, contents, merge, strings"); } s = snext; -- cgit v1.2.1