https://sourceware.org/bugzilla/show_bug.cgi?id=22042

            Bug ID: 22042
           Summary: gold: --help output translation header unexpectedly
           Product: binutils
           Version: unspecified
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: gold
          Assignee: ccoutant at gmail dot com
          Reporter: xw897002528 at gmail dot com
                CC: ian at airs dot com
  Target Milestone: ---

what does it look like:
```
  -fuse-ld Project-Id-Version: gold 2.24.90
Report-Msgid-Bugs-To: bug-binutils@gnu.org
POT-Creation-Date: 2014-02-10 09:42+1030
PO-Revision-Date: 2016-02-23 15:25+0100
Last-Translator: Mingye Wang (Arthur2e5) <arthur200...@gmail.com>
Language-Team: Chinese (simplified) <i18n...@googlegroups.com>
Language: zh_CN
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
X-Generator: Poedit 1.8.7

                              为 GCC 链接器选项兼容性忽略
```

what does i except:
```
  -fuse-ld 为 GCC 链接器选项兼容性忽略
```

what's wrong with codes:
```
 DEFINE_string(fuse_ld, options::ONE_DASH, '\0', "",
                N_("Ignored for GCC linker option compatibility"),
                "");
```
if i am right, "" is the string which will be used to replace NULL or "" with,
so, it should be:
```
 DEFINE_string(fuse_ld, options::ONE_DASH, '\0', "",
                N_("Ignored for GCC linker option compatibility"),
                NULL);
```

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
bug-binutils mailing list
bug-binutils@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-binutils

Reply via email to