OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <Rule Name="Link" PageTemplate="tool" DisplayName="Linker" SwitchPrefix="-" Orde
r="20" xmlns="http://schemas.microsoft.com/build/2009/properties" xmlns:x="http:
//schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembl
y=mscorlib"> | 3 <Rule Name="Link" PageTemplate="tool" DisplayName="Linker" SwitchPrefix="-" Orde
r="20" xmlns="http://schemas.microsoft.com/build/2009/properties" xmlns:x="http:
//schemas.microsoft.com/winfx/2006/xaml" xmlns:sys="clr-namespace:System;assembl
y=mscorlib"> |
4 | 4 |
5 <Rule.Categories> | 5 <Rule.Categories> |
6 <Category Name="General" DisplayName="General" /> | 6 <Category Name="General" DisplayName="General" /> |
7 <Category Name="Input" DisplayName="Input" /> | 7 <Category Name="Input" DisplayName="Input" /> |
8 <Category Name="Advanced" DisplayName="Advanced" /> | 8 <Category Name="Advanced" DisplayName="Advanced" /> |
9 <Category Name="Command Line" DisplayName="Command Line" Subtype="CommandLin
e" /> | 9 <Category Name="Command Line" DisplayName="Command Line" Subtype="CommandLin
e" /> |
10 </Rule.Categories> | 10 </Rule.Categories> |
(...skipping 15 matching lines...) Expand all Loading... |
26 <StringListProperty Subtype="folder" Name="SystemLibraryDirectories" Category=
"General" Visible="false" Switch="L"> | 26 <StringListProperty Subtype="folder" Name="SystemLibraryDirectories" Category=
"General" Visible="false" Switch="L"> |
27 </StringListProperty> | 27 </StringListProperty> |
28 | 28 |
29 | 29 |
30 <BoolProperty Name="IgnoreAllDefaultLibraries" DisplayName="Ignore All Default
Libraries" Category="Input" Switch="nostdlib"> | 30 <BoolProperty Name="IgnoreAllDefaultLibraries" DisplayName="Ignore All Default
Libraries" Category="Input" Switch="nostdlib"> |
31 </BoolProperty> | 31 </BoolProperty> |
32 <StringListProperty Subtype="file" Name="AdditionalDependencies" DisplayName="
Additional Dependencies" Description="Specifies additional dependencies to add t
o the link command line" Category="Input" Switch="l"> | 32 <StringListProperty Subtype="file" Name="AdditionalDependencies" DisplayName="
Additional Dependencies" Description="Specifies additional dependencies to add t
o the link command line" Category="Input" Switch="l"> |
33 </StringListProperty> | 33 </StringListProperty> |
34 | 34 |
35 | 35 |
36 <BoolProperty Name="ReportUndefinedSymbols" DisplayName="Report Undefined Symb
ols" Category="Advanced" Switch="Wl,--no-undefined"> | |
37 </BoolProperty> | |
38 | |
39 | |
40 <StringProperty Name="AdditionalOptions" DisplayName="Additional Options" Desc
ription="Additional Options" Category="Command Line"> | 36 <StringProperty Name="AdditionalOptions" DisplayName="Additional Options" Desc
ription="Additional Options" Category="Command Line"> |
41 </StringProperty> | 37 </StringProperty> |
42 | 38 |
| 39 <BoolProperty Name="TranslateX86" DisplayName="Translate to x86 after linking"
Category="General"> |
| 40 </BoolProperty> |
| 41 |
| 42 <BoolProperty Name="TranslateX64" DisplayName="Translate to x86_64 after linki
ng" Category="General"> |
| 43 </BoolProperty> |
| 44 |
| 45 <BoolProperty Name="TranslateArm" DisplayName="Translate to arm after linking"
Category="General"> |
| 46 </BoolProperty> |
| 47 |
43 </Rule> | 48 </Rule> |
OLD | NEW |