[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Bug gold/22042] New: gold: --help output translation header unexpectedl
From: |
xw897002528 at gmail dot com |
Subject: |
[Bug gold/22042] New: gold: --help output translation header unexpectedly |
Date: |
Wed, 30 Aug 2017 12:29:27 +0000 |
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: address@hidden
POT-Creation-Date: 2014-02-10 09:42+1030
PO-Revision-Date: 2016-02-23 15:25+0100
Last-Translator: Mingye Wang (Arthur2e5) <address@hidden>
Language-Team: Chinese (simplified) <address@hidden>
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.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Bug gold/22042] New: gold: --help output translation header unexpectedly,
xw897002528 at gmail dot com <=