f61d26a5edb9addd806b95ad1c5e9ec73c01ab46
[scons.git] / src / engine / SCons / Tool / as.xml
1 <!--
2 __COPYRIGHT__
3
4 This file is processed by the bin/SConsDoc.py module.
5 See its __doc__ string for a discussion of the format.
6 -->
7 <tool name="as">
8 <summary>
9 XXX
10 </summary>
11 </tool>
12
13 <cvar name="AS">
14 <summary>
15 The assembler.
16 </summary>
17 </cvar>
18
19 <cvar name="ASCOM">
20 <summary>
21 The command line used to generate an object file
22 from an assembly-language source file.
23 </summary>
24 </cvar>
25
26 <cvar name="ASCOMSTR">
27 <summary>
28 The string displayed when an object file
29 is generated from an assembly-language source file.
30 If this is not set, then &cv-link-ASCOM; (the command line) is displayed.
31
32 <example>
33 env = Environment(ASCOMSTR = "Assembling $TARGET")
34 </example>
35 </summary>
36 </cvar>
37
38 <cvar name="ASFLAGS">
39 <summary>
40 General options passed to the assembler.
41 </summary>
42 </cvar>
43
44 <cvar name="ASPPCOM">
45 <summary>
46 The command line used to assemble an assembly-language
47 source file into an object file
48 after first running the file through the C preprocessor.
49 Any options specified
50 in the &cv-link-ASFLAGS; and &cv-link-CPPFLAGS; construction variables
51 are included on this command line.
52 </summary>
53 </cvar>
54
55 <cvar name="ASPPCOMSTR">
56 <summary>
57 The string displayed when an object file
58 is generated from an assembly-language source file
59 after first running the file through the C preprocessor.
60 If this is not set, then &cv-link-ASPPCOM; (the command line) is displayed.
61
62 <example>
63 env = Environment(ASPPCOMSTR = "Assembling $TARGET")
64 </example>
65 </summary>
66 </cvar>
67
68 <cvar name="ASPPFLAGS">
69 <summary>
70 General options when an assembling an assembly-language
71 source file into an object file
72 after first running the file through the C preprocessor.
73 The default is to use the value of &cv-link-ASFLAGS;.
74 </summary>
75 </cvar>