b26f6343a73ff9ea32522bf2c5eafd937f3569c9
[scons.git] / src / engine / SCons / Tool / ar.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="ar">
8 <summary>
9 XXX
10 </summary>
11 </tool>
12
13 <cvar name="AR">
14 <summary>
15 The static library archiver.
16 </summary>
17 </cvar>
18
19 <cvar name="ARCOM">
20 <summary>
21 The command line used to generate a static library from object files.
22 </summary>
23 </cvar>
24
25 <cvar name="ARCOMSTR">
26 <summary>
27 The string displayed when an object file
28 is generated from an assembly-language source file.
29 If this is not set, then &cv-link-ARCOM; (the command line) is displayed.
30
31 <example>
32 env = Environment(ARCOMSTR = "Archiving $TARGET")
33 </example>
34 </summary>
35 </cvar>
36
37 <cvar name="ARFLAGS">
38 <summary>
39 General options passed to the static library archiver.
40 </summary>
41 </cvar>
42
43 <cvar name="RANLIB">
44 <summary>
45 The archive indexer.
46 </summary>
47 </cvar>
48
49 <cvar name="RANLIBCOM">
50 <summary>
51 The command line used to index a static library archive.
52 </summary>
53 </cvar>
54
55 <cvar name="RANLIBCOMSTR">
56 <summary>
57 The string displayed when a static library archive is indexed.
58 If this is not set, then &cv-link-RANLIBCOM; (the command line) is displayed.
59
60 <example>
61 env = Environment(RANLIBCOMSTR = "Indexing $TARGET")
62 </example>
63 </summary>
64 </cvar>
65
66 <cvar name="RANLIBFLAGS">
67 <summary>
68 General options passed to the archive indexer.
69 </summary>
70 </cvar>