Displaying 4 results from an estimated 4 matches for "commonoptions".
2013 Sep 18
2
[LLVMdev] [lld][Options] Sharing common options across flavors
...Nick,
There are already a lot of options that are being shared across various
flavors. Adding a new option becomes a issue when that option need to
available across all flavors.
As the first step, I am thinking of consolidating the common options
shared across all the Unix variant flavors in CommonOptions.td.
The options that are shared between Darwin/GnuLD are :-
a) -o
b) -L
c) -emit-yaml
d) --help
e) -mllvm
I am also thinking of adding a verbose option that would essentially
control the various verbose outputs that we might want to have. For example:
lld -flavor gnu -target x86_64
--verbose=...
2013 Sep 18
0
[LLVMdev] [lld][Options] Sharing common options across flavors
...There are already a lot of options that are being shared across various flavors. Adding a new option becomes a issue when that option need to available across all flavors.
>
> As the first step, I am thinking of consolidating the common options shared across all the Unix variant flavors in CommonOptions.td.
>
> The options that are shared between Darwin/GnuLD are :-
>
> a) -o
> b) -L
> c) -emit-yaml
> d) --help
> e) -mllvm
>
That would make it difficult to use OptionGroup (as darwin driver has) so the —help output is organized. Also, the windows driver uses ‘/‘ so it...
2010 Nov 22
0
[ANNOUNCE] xf86-input-evdev 2.5.99.901
...N_TOUCH/STYLUS/STYLUS2 support.
Clean up button code to number mapping
Extend button mapping to full ranges
Peter Hutterer (20):
Remove usage of XI86_POINTER_CAPABLE and XI86_KEYBOARD_CAPABLE.
Add ifdefs for pre ABI 12 support.
Use pInfo->options instead of dev->commonOptions.
Move private init down.
Use the new input API (changed PreInit function prototype).
Return BadMatch for already configured devices.
Bump to 2.5.99.
Remove refcnt initialization from InputDriverRec.
De-duplicate event queue access.
Don't pass pointers a...
2013 Sep 18
1
[LLVMdev] [lld][Options] Sharing common options across flavors
...are already a lot of options that are being shared across various flavors. Adding a new option becomes a issue when that option need to available across all flavors.
>>
>> As the first step, I am thinking of consolidating the common options shared across all the Unix variant flavors in CommonOptions.td.
>>
>> The options that are shared between Darwin/GnuLD are :-
>>
>> a) -o
>> b) -L
>> c) -emit-yaml
>> d) --help
>> e) -mllvm
>>
> That would make it difficult to use OptionGroup (as darwin driver has) so the —help output is organized. A...