5 This file is processed by the bin/SConsDoc.py module.
6 See its __doc__ string for a discussion of the format.
10 <!ENTITY % scons SYSTEM '../../doc/scons.mod'>
12 <!ENTITY % builders-mod SYSTEM '../../doc/generated/builders.mod'>
14 <!ENTITY % functions-mod SYSTEM '../../doc/generated/functions.mod'>
16 <!ENTITY % tools-mod SYSTEM '../../doc/generated/tools.mod'>
18 <!ENTITY % variables-mod SYSTEM '../../doc/generated/variables.mod'>
22 <sconsdoc xmlns="http://www.scons.org/dbxsd/v1.0"
23 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24 xsi:schemaLocation="http://www.scons.org/dbxsd/v1.0 http://www.scons.org/dbxsd/v1.0/scons.xsd">
29 Sets construction variables for the &as; assembler.
36 <item>ASPPFLAGS</item>
42 <item>_CPPDEFFLAGS</item>
43 <item>_CPPINCFLAGS</item>
58 The command line used to generate an object file
59 from an assembly-language source file.
64 <cvar name="ASCOMSTR">
67 The string displayed when an object file
68 is generated from an assembly-language source file.
69 If this is not set, then &cv-link-ASCOM; (the command line) is displayed.
73 env = Environment(ASCOMSTR = "Assembling $TARGET")
81 General options passed to the assembler.
89 The command line used to assemble an assembly-language
90 source file into an object file
91 after first running the file through the C preprocessor.
93 in the &cv-link-ASFLAGS; and &cv-link-CPPFLAGS; construction variables
94 are included on this command line.
99 <cvar name="ASPPCOMSTR">
102 The string displayed when an object file
103 is generated from an assembly-language source file
104 after first running the file through the C preprocessor.
105 If this is not set, then &cv-link-ASPPCOM; (the command line) is displayed.
109 env = Environment(ASPPCOMSTR = "Assembling $TARGET")
114 <cvar name="ASPPFLAGS">
117 General options when an assembling an assembly-language
118 source file into an object file
119 after first running the file through the C preprocessor.
120 The default is to use the value of &cv-link-ASFLAGS;.