3 SPDX-FileCopyrightText: Copyright The SCons Foundation (https://scons.org)
4 SPDX-License-Identifier: MIT
5 SPDX-FileType: DOCUMENTATION
7 This file is processed by the bin/SConsDoc.py module.
11 <!ENTITY % scons SYSTEM '../../doc/scons.mod'>
13 <!ENTITY % builders-mod SYSTEM '../../doc/generated/builders.mod'>
15 <!ENTITY % functions-mod SYSTEM '../../doc/generated/functions.mod'>
17 <!ENTITY % tools-mod SYSTEM '../../doc/generated/tools.mod'>
19 <!ENTITY % variables-mod SYSTEM '../../doc/generated/variables.mod'>
23 <sconsdoc xmlns="http://www.scons.org/dbxsd/v1.0"
24 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25 xsi:schemaLocation="http://www.scons.org/dbxsd/v1.0 http://www.scons.org/dbxsd/v1.0/scons.xsd">
30 Sets construction variables for the &as; assembler.
37 <item>ASPPFLAGS</item>
43 <item>_CPPDEFFLAGS</item>
44 <item>_CPPINCFLAGS</item>
59 The command line used to generate an object file
60 from an assembly-language source file.
65 <cvar name="ASCOMSTR">
68 The string displayed when an object file
69 is generated from an assembly-language source file.
70 If this is not set, then &cv-link-ASCOM; (the command line) is displayed.
74 env = Environment(ASCOMSTR = "Assembling $TARGET")
82 General options passed to the assembler.
90 The command line used to assemble an assembly-language
91 source file into an object file
92 after first running the file through the C preprocessor.
94 in the &cv-link-ASFLAGS; and &cv-link-CPPFLAGS; construction variables
95 are included on this command line.
100 <cvar name="ASPPCOMSTR">
103 The string displayed when an object file
104 is generated from an assembly-language source file
105 after first running the file through the C preprocessor.
106 If this is not set, then &cv-link-ASPPCOM; (the command line) is displayed.
110 env = Environment(ASPPCOMSTR = "Assembling $TARGET")
115 <cvar name="ASPPFLAGS">
118 General options when an assembling an assembly-language
119 source file into an object file
120 after first running the file through the C preprocessor.
121 The default is to use the value of &cv-link-ASFLAGS;.