Displaying 4 results from an estimated 4 matches for "d60439".
Did you mean:
60439
2019 Apr 20
2
Accept --long-option but not -long-option for llvm binary utilities
> Are you proposing to make this the new style across all LLVM utilities?
No. Only drop --long-option for GNU binutils replacements (people sometimes
call them LLVM binary utilities): llvm-objcopy (D60439), llvm-ar,
llvm-size, llvm-nm, etc. llvm-objdump (not sure what to do with mach-o
specific dump options), llvm-readelf (not sure what to do with llvm-readobj)
On Sat, Apr 20, 2019 at 2:13 AM Reid Kleckner <rnk at google.com> wrote:
> Are you proposing to make this the new style across al...
2019 Apr 16
4
Accept --long-option but not -long-option for llvm binary utilities
...-Wd => -W -d, -sj.text => -s -j.text
The problem is, grouped short options don't play well with -long-option.
Sometimes there can be ambiguity. The issue is more prominent if the short
option accepts an argument.
An approach to prevent the ambiguity is to just disallow -long-option.
In D60439, I plan to make llvm-objcopy accept --long-option but not
-long-option.
It will make its command line option parsing behave more like GNU objcopy
and less like a regular llvm utility. What do people think of the
divergence?
Further, can we make similar changes to other llvm binary utilities (their...
2019 Apr 16
2
Accept --long-option but not -long-option for llvm binary utilities
...The problem is, grouped short options don't play well with -long-option.
>> Sometimes there can be ambiguity. The issue is more prominent if the short
>> option accepts an argument.
>>
>> An approach to prevent the ambiguity is to just disallow -long-option.
>> In D60439, I plan to make llvm-objcopy accept --long-option but not
>> -long-option.
>> It will make its command line option parsing behave more like GNU objcopy
>> and less like a regular llvm utility. What do people think of the
>> divergence?
>>
>> Further, can we make...
2019 Apr 17
2
Accept --long-option but not -long-option for llvm binary utilities
...on't play well with
>>>> -long-option. Sometimes there can be ambiguity. The issue is more prominent
>>>> if the short option accepts an argument.
>>>>
>>>> An approach to prevent the ambiguity is to just disallow -long-option.
>>>> In D60439, I plan to make llvm-objcopy accept --long-option but not
>>>> -long-option.
>>>> It will make its command line option parsing behave more like GNU
>>>> objcopy and less like a regular llvm utility. What do people think of the
>>>> divergence?
>>...