summaryrefslogtreecommitdiff
path: root/doc/man/scons.1
blob: 3f4af0690b00f9bfcd19073f105a2ef168a90999 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
.\" Copyright (c) 2001 Steven Knight
.\"
.\" Permission is hereby granted, free of charge, to any person obtaining
.\" a copy of this software and associated documentation files (the
.\" "Software"), to deal in the Software without restriction, including
.\" without limitation the rights to use, copy, modify, merge, publish,
.\" distribute, sublicense, and/or sell copies of the Software, and to
.\" permit persons to whom the Software is furnished to do so, subject to
.\" the following conditions:
.\"
.\" The above copyright notice and this permission notice shall be included
.\" in all copies or substantial portions of the Software.
.\"
.\" THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
.\" KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
.\" WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
.\" NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
.\" LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
.\" OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
.\" WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
.\"
.\" __FILE__ __REVISION__ __DATE__ __DEVELOPER__
.\"
.TH SCONS 1 "December 2001"
.SH NAME
scons \- software constructor
.SH SYNOPSIS
.B scons
[
.IR options ...
]
[
.IR targets ...
]
.SH DESCRIPTION

The 
.B scons 
utility builds software (or other files) by determining which
component pieces must be rebuilt and executing the necessary commands to
rebuild them.

By default, 
.B scons 
searches for a file named 
.IR SConstruct ,
.IR Sconstruct ,
or
.I sconstruct
(in that order) in the current directory and reads its
configuration from the first file found.  An alternate file name may be
specified via the 
.B -f
option. If the specified file is not
in the local directory, 
.B scons 
will internally change its working
directory (chdir) to the directory containing the file.

The configuration file specifies the files to be built, and
(optionally) the rules to build those files.  Reasonable default
rules exist for building common software components (executable
programs, object files, libraries), so that for simple software
projects, only the target and input files need be specified.

.B scons
can scan known input files automatically for dependency
information (for example, #include statements
in C or C++ files) and will rebuild dependent files appropriately
whenever any "included" input file changes. 
.B scons
supports the
ability to define new scanners for unknown input file types.

.B scons
is normally executed in a top-level directory containing a
.I SConstruct
file, specifying the target or targets to be built as
command-line arguments.  The command

.IP
.nf
scons .
.PP
.fi

will build all target files in or below the current directory 
.RI ( . ")."

.IP
.nf
scons /
.PP
.fi

will build all target files in or below the root directory (i.e.,
all files).  Specific targets may be supplied:

.IP
.nf
scons foo bar
.PP
.fi

Targets may be omitted from the command line,
in which case the targets specified
in the configuration file(s) as
.B Default
targets will be built:

.IP
.nf
scons
.PP
.fi

Specifying "cleanup" targets in configuration files is not
necessary.  The 
.B -c
flag removes all files
necessary to build the specified target:
.IP
.nf
scons -c .
.PP
.fi
to remove all target files, or:
.IP
.nf
scons -c build export
.PP
.fi
to remove target files under build and export.

A subset of a hierarchical tree may be built by
remaining at the top-level directory (where the 
.I SConstruct
file lives) and specifying the subdirectory as the target to be
built:

.IP
.nf
scons src/subdir
.PP
.fi

.\" or changing directory and invoking scons with the
.\" .B -u
.\" option, which traverses up the directory
.\" hierarchy until it finds the 
.\" .I SConstruct
.\" file, and then builds
.\" targets relatively to the current subdirectory:
.\" 
.\" .RS
.\" cd src/subdir
.\" .RE
.\" .RS
.\" scons -u .
.\" .RE

.B scons
supports building multiple targets in parallel via a
.B -j
option that takes, as its argument, the number
of simultaneous tasks that may be spawned:

.IP
.nf
scons -j 4
.PP
.fi

builds four targets in parallel, for example.

.\" Values of variables to be passed to the configuration file(s)
.\" may be specified on the command line:
.\" 
.\" .IP
.\" .nf
.\" scons debug=1 .
.\" .PP
.\" .fi
.\" 
.\" These variables can be used in the configuration file(s) to modify
.\" the build in any way.
.\" 
.\" .B scons
.\" can maintain a cache of target (derived) files that can
.\" be shared between multiple builds.  When caching is enabled in a
.\" configuration file, any target files built by 
.\" .B scons
.\" will be copied
.\" to the cache.  If an up-to-date target file is found in the cache, it
.\" will be retrieved from the cache instead of being rebuilt locally.
.\" Caching behavior may be disabled and controlled in other ways by the
.\" .BR --cache-force , 
.\" .BR --cache-disable ,
.\" and
.\" .B --cache-show
.\" command-line options.  The
.\" .B --random
.\" option is useful whenever multiple builds may be
.\" trying to update the cache simultaneously.

.SH OPTIONS
In general, 
.B scons 
supports the same command-line options as GNU
.BR make , 
and many of those supported by 
.BR cons .

.IP -b
Ignored for compatibility with non-GNU versions of
.BR make.

.IP "-c, --clean, --remove"
Clean up by removing all target files for which a construction
command is specified.

.\" ".IP --cache-disable, --no-cache"
.\" Disable caching.  Will neither retrieve files from cache nor flush
.\" files to cache.  Has no effect if use of caching is not specified
.\" in a configuration file.
.\" 
.\" .IP "--cache-force, --cache-populate"
.\" Populate a cache by forcing any already-existing up-to-date
.\" target files to the cache, in addition to files built by this
.\" invocation.  This is useful to populate a new cache with
.\" appropriate target files, or to make available in the cache
.\" any target files recently built with caching disabled via the
.\" .B --cache-disable
.\" option.
.\" 
.\" .IP --cache-show
.\" When retrieving a target file from a cache, show the command
.\" that would have been executed to build the file.  This produces
.\" consistent output for build logs, regardless of whether a target
.\" file was rebuilt or retrieved from cache.

.TP 
.RI "-C" " directory" ",  --directory=" directory
Change to the specified 
.I directory
before searching for the 
.IR SConstruct ,
.IR Sconstruct ,
or
.I sconstruct
file, or doing anything
else.  Multiple 
.B -C
options are interpreted
relative to the previous one, and the right-most
.B -C
option wins. (This option is nearly
equivalent to 
.BR "-f directory/SConstruct" ,
except that it will search for
.IR SConstruct ,
.IR Sconstruct , 
or
.I sconstruct
in the specified directory.)

.\" .IP -d
.\" Display dependencies while building target files.  Useful for
.\" figuring out why a specific file is being rebuilt, as well as
.\" general debugging of the build process.

.TP
.RI --debug= type
Print debugging information durring the build process.
.I type
specifies what type of of debugging information to print. Currently the
only supported type is
.I tree
which causes the dependency tree to be printed after each top-level
target is built.

.IP "-e, --environment-overrides"
Variables from the execution environment override construction
variables from the configuration files.

.TP
.RI -f " file" ", --file=" file ", --makefile=" file ", --sconstruct=" file
Use 
.I file 
as the initial configuration
file. If 
.I file
is in another directory,
.B scons 
will change to that directory before building targets.

.IP "-h, --help"
Print a local help message for this build, if one is defined in
the configuration file(s), plus a line that describes the 
.B -H
option for command-line option help.  If no local help message
is defined, prints the standard help message about command-line
options.  Exits after displaying the appropriate message.

.IP "-H, --help-options"
Print the standard help message about command-line options and
exit.

.IP "-i, --ignore-errors"
Ignore all errors from commands executed to rebuild files.

.TP 
.RI -I " directory" ", --include-dir=" directory
Specifies a 
.I directory
to search for
imported Python modules.  If several 
.B -I
options
are used, the directories are searched in the order specified.

.TP
.RI -j " N" ", --jobs=" N
Specifies the number of jobs (commands) to run simultaneously.
If there is more than one 
.B -j 
option, the last one is effective.

.\" ??? If the 
.\" .B -j 
.\" option
.\" is specified without an argument,
.\" .B scons 
.\" will not limit the number of
.\" simultaneous jobs.

.IP "-k, --keep-going"
Continue as much as possible after an error.  The target that
failed and those that depend on it will not be remade, but other
targets specified on the command line will still be processed.

.\" .TP
.\" .RI  -l " N" ", --load-average=" N ", --max-load=" N
.\" No new jobs (commands) will be started if
.\" there are other jobs running and the system load
.\" average is at least 
.\" .I N
.\" (a floating-point number).
.\" 
.\" .IP --list-derived
.\" List derived files (targets, dependencies) that would be built,
.\" but do not build them.
.\" [XXX This can probably go away with the right
.\" combination of other options.  Revisit this issue.]
.\" 
.\" .IP --list-actions
.\" List derived files that would be built, with the actions
.\" (commands) that build them.  Does not build the files.
.\" [XXX This can probably go away with the right
.\" combination of other options.  Revisit this issue.]
.\" 
.\" .IP --list-where
.\" List derived files that would be built, plus where the file is
.\" defined (file name and line number).  Does not build the files.
.\" [XXX This can probably go away with the right
.\" combination of other options.  Revisit this issue.]

.IP -m
Ignored for compatibility with non-GNU versions of
.BR make .

.IP "-n, --just-print, --dry-run, --recon"
No execute.  Print the commands that would be executed to build
any out-of-date target files, but do not execute the commands.

.\" .TP
.\" .RI -o " file" ", --old-file=" file ", --assume-old=" file
.\" Do not rebuild 
.\" .IR file ,
.\" and do
.\" not rebuild anything due to changes in the contents of
.\" .IR file .
.\" 
.\" .TP 
.\" .RI --override " file"
.\" Read values to override specific build environment variables
.\" from the specified 
.\" .IR file .
.\"
.\" .IP -p
.\" Print the data base (construction environments,
.\" Builder and Scanner objects) that are defined
.\" after reading the configuration files.
.\" After printing, a normal build is performed
.\" as usual, as specified by other command-line options.
.\" This also prints version information
.\" printed by the 
.\" .B -v
.\" option.
.\"
.\" To print the database without performing a build do:
.\" .IP
.\" .nf
.\" scons -p -q
.\" .PP
.\" .fi
.\"
.\" .IP "-q, --question"
.\" Do not run any commands, or print anything.  Just return an exit
.\" status that is zero if the specified targets are already up to
.\" date, nonzero otherwise.
.\"
.\" .IP "-r, -R, --no-builtin-rules, --no-builtin-variables"
.\" Clear the default construction variables.  Construction
.\" environments that are created will be completely empty.
.\"
.\" .IP --random
.\" Build dependencies in a random order.  This is useful when
.\" building multiple trees simultaneously with caching enabled as a
.\" way to prevent multiple builds from simultaneously trying to build
.\" or retrieve the same target files.

.IP "-s, --silent, --quiet"
Silent.  Do not print commands that are executed to rebuild
target files.

.IP "-S, --no-keep-going, --stop"
Ignored for compatibility with GNU 
.BR make .

.IP "-t, --touch"
Ignored for compatibility with GNU
.BR make .  
(Touching a file to make it
appear up-to-date is unnecessary when using 
.BR scons .)

.\" .IP -u
.\" Traverse up directories until an 
.\" .I SConstruct
.\" or 
.\" .I sconstruct
.\" file is found, and use that
.\" as the top of the directory tree.  Only targets at or below the
.\" current directory will be built.

.IP "-v, --version"
Print the 
.B scons
version, copyright information,
list of authors, and any other relevant information.
Then exit.

.IP "-w, --print-directory"
Print a message containing the working directory before and
after other processing.

.IP --no-print-directory
Turn off -w, even if it was turned on implicitly.

.\" .TP
.\" .RI --write-filenames= file
.\" Write all filenames considered into
.\" .IR file .
.\"
.\" .TP
.\" .RI -W " file" ", --what-if=" file ", --new-file=" file ", --assume-new=" file
.\" Pretend that the target 
.\" .I file 
.\" has been
.\" modified.  When used with the 
.\" .B -n
.\" option, this
.\" show you what would be rebuilt if you were to modify that file.
.\" Without 
.\" .B -n
.\" ... what? XXX
.\"
.\" .IP --warn-undefined-variables
.\" Warn when an undefined variable is referenced.
.\"
.\" .TP 
.\" .RI -Y " repository" ", --repository=" repository
.\" Search the specified repository for any input and target
.\" files not found in the local directory hierarchy.  Multiple
.\" .B -Y
.\" options may specified, in which case the
.\" repositories are searched in the order specified.

.SH CONFIGURATION FILE REFERENCE
.SS Construction Environments
A construction environment is the basic means by which the configuration
files communicate build information to 
.BR scons .
A new construction environment is created using the 
.B Environment 
function:

.IP
.nf 
env = Environment()
.PP
.fi

Build rules are specified by calling builder methods on a construction
environment. The arguments to the builder methods are target (a list of
target files) and source (a list of source files). If a string is given
for target or source, then 
.B scons 
interprets it as a space delimited list
of files. The following are examples of calling a builder:

.IP
.nf
env.Program(target = 'bar', source = 'bar.c foo.c')
env.Program('bar', 'bar.c foo.c')
env.Program('bar', ['bar.c', 'foo.c'])
.PP
.fi

.B scons
provides the following builders:

.IP Object
Builds an object file from one or more C/C++ source files. Source files
must have one of the following extensions: .c, .C, .cc, .cpp, .cxx, .c++, .C++. 
The target object file prefix and suffix (if any) are automatically
added. Example:
.IP
.nf
env.Object(target = 'bar', source = 'bar.c')
.PP
.fi

.IP Program
Builds an executable given one or more object files or C/C++ source
files. If any C/C++ source files are given, then they will be automatically
compiled to object files. The executable prefix and suffix (if any) are
automatically added to the target. Example:
.IP
.nf
env.Program(target = 'bar', source = 'bar.c foo.o')
.PP
.fi

.IP Library
Builds a library given one or more object files or C/C++ source
files. If any C/C++ source files are given, then they will be automatically
compiled to object files. The library prefix and suffix (if any) are
automatically added to the target. Example:
.IP
.nf
env.Library(target = 'bar', source = 'bar.c foo.o')
.PP
.fi

.IP CFile
Builds a C source file given a lex (.l) or yacc (.y) input file.
The hard-coded suffix .c is
automatically added to the target
if it is not already present. Example:
.IP
.nf
env.CFile(target = 'foo.c', source = 'foo.l') # builds foo.c
env.CFile(target = 'bar', source = 'bar.y')   # builds bar.c
.PP
.fi

.LP

C/C++ source files are automatically scanned for dependencies by 
.B scons
so the dependencies do not need to be provided. In addition, all builder
targets automatically depend on their sources. An explicit dependency can
be specified using the 
.B Depends 
method of a construction environment:

.IP
.nf
env.Depends('foo.c', 'foo.h')
.PP
.fi

Additional methods include:

.IP Install
Installs one or more files in a destination directory.
The file names remain the same.
.IP
.nf
env.Install(dir = '/usr/local/bin', source = 'foo bar')
.PP
.fi

.IP InstallAs
Installs one or more files as specific file names.
This allows changing a file name as part of the
installation:
.IP
.nf
env.Install(dir = '/usr/local/bin/foo', source = 'foo_debug')
env.Install(target = '../lib/libfoo.a ../lib/libbar.a',
            source = 'libFOO.a libBAR.a')
.PP
.fi
It is an error if the target and source
list different numbers of files.

.SS Construction Variables

A construction environment has an associated dictionary of construction
variables that are used by built-in or user-supplied build rules. A number
of useful construction variables are automatically defined by scons for
each supported platform, and additional construction variables can be defined
by the user. The following is a list of the automatically defined construction
variables:

.IP CC 
The C compiler.

.IP CCFLAGS 
General options that are passed to the C compiler.

.IP CCOM 
The command line used to compile a C source file to an object file.

.IP CXX
The C++ compiler.

.IP CXXFLAGS 
General options that are passed to the C++ compiler.

.IP CXXCOM
The command line used to compile a C++ source file to an object file.

.IP CPPPATH
The list of directories that the C preprocessor will search for include
directories. The C/C++ implicit dependency scanner will search these
directories for include files. Don't explicitly put include directory
arguments in CCFLAGS or CXXFLAGS because the result will be non-portable
and the directories will not be searched by the depedency scanner. Note:
directory names in CPPPATH will be looked-up relative to the SConscript
directory when they are used in a command. To force 
.B scons
to look-up a directory relative to the root of the source tree use #:
.IP
.nf
env.Environment(CPPPATH='#/include')
.PP
.fi
.RS
The directory look-up can also be forced using the 
.BR Dir ()
function:
.RE
.IP
.nf
include = Dir('include')
env.Environment(CPPPATH=include)
.PP
.fi
.RE

.IP LINK
The linker.

.IP LINKFLAGS
General options passed to the linker.

.IP LINKCOM
The command line used to link object files into an executable.

.IP AR
The static library command.

.IP ARFLAGS
General options passed to the static library command.

.IP ARCOM
The command line used to generate a static library from object files.

.IP LEX
The lexical analyzer generator.

.IP LEXFLAGS
General options passed to the lexical analyzer generator.

.IP LEXCOM
The command line used to call the lexical analyzer generator
to generate a source file.

.IP YACC
The parser generator.

.IP YACCFLAGS
General options passed to the parser generator.

.IP YACCCOM
The command line used to call the parser generator
to generate a source file.

.IP BUILDERS
A list of the available builders.
[CFile, Object, Program, Library] by default.

.IP SCANNERS
A list of the available implicit dependency scanners. [CScan] by default.

.IP OBJPREFIX 
The prefix used for object file names.

.IP OBJSUFFIX 
The suffix used for object file names.

.IP PROGPREFIX
The prefix used for executable file names.

.IP PROGSUFFIX
The suffix used for executable file names.

.IP LIBPREFIX
The prefix used for library file names.

.IP LIBSUFFIX 
The suffix used for library file names.

.IP LIBDIRPREFIX
The prefix used to specify a library directory on the linker command line.

.IP LIBDIRASUFFIX
The suffix used to specify a library directory on the linker command line.

.IP LIBLINKPREFIX
The prefix used to specify a library to link on the linker command line.

.IP LIBLINKSUFFIX
The suffix used to specify a library to link on the linker command line.

.IP INCPREFIX
The prefix used to specify an include directory on the C compiler command
line.

.IP INCSUFFIX
The suffix used to specify an include directory on the C compiler command
line.

.IP ENV
A dictionary of environment variables
to use when invoking commands.
Note that, by default,
.B scons
does
.I not
propogate the environment in force when you
execute
.B scons
to the commands used to build target files.
This is so that builds will be guaranteed
repeatable regardless of the environment
variables set at the time
.B scons
is invoked.

If you want to propogate your
environment variables
to the commands executed
to build target files,
you must do so explictly:

.IP
.nf
import os
env = Environment(ENV = os.environ)
.PP
.fi

Note that you can choose only to propogate
certain environment variables.
A common example is
the system
.B PATH
environment variable
to force 
.B scons
to use the same utilities
as the invoking shell (or other process):

.IP
.nf
import os
env = Environment(ENV = {'PATH' : os.environ['PATH']})
.PP
.fi

.LP

Construction variables can be retrieved and set using the 
.B Dictionary 
method of the construction environment:

.IP
.nf
dict = env.Dictionary()
dict["CC"] = "cc"
.PP
.fi

Construction variables can also be passed to the construction environment
constructor:

.IP
.nf
env = Environment(CC="cc")
.PP
.fi

or when copying a construction environment using the 
.B Copy 
method:

.IP
.nf
env2 = env.Copy(CC="cl.exe")
.PP
.fi

.SS Other Functions

.B scons
also provides various function not associated with a construction
environment that configuration files can use to affect the build:

.TP
.RI SConscript( script ", [" exports ])
This tells
.B scons
to execute .I script
as a configuration file. The optional 
.I exports
argument provides a list of variable names to export to
.IR script ". " exports
can also be a space delimited string of variables names. 
.I script
must use the
.BR Import ()
function to import the variables. Any variables returned by 
.I script 
using 
.BR Return ()
will be returned by the call to
.BR SConscript (). 
Examples:

.IP
.nf
SConscript('dir/SConscript')
foo = SConscript('subdir/SConscript', "env")
.PP
.fi

.TP
.RI Export( vars )
This tells 
.B scons
to export a list of variables from the current
configuration file to all other configuration files. The exported variables
are kept in a global collection, so subsequent exports
will over-write previous exports that have the same name. 
Multiple variable names can be passed to
.BR Export ()
in a space delimited string or as seperate arguments. Example:

.IP
.nf
Export("env")
.PP
.fi

.TP 
.RI Import( vars )
This tells 
.B scons
to import a list of variables into the current configuration file. This
will import variables that were exported with
.BR Export ()
or in the 
.I exports
argument to 
.BR SConscript ().
Variables exported by 
.BR SConscript ()
have precedence. Multiple variable names can be passed to 
.BR Import ()
in a space delimited string or as seperate arguments. Example:

.IP
.nf
Import("env")
.PP
.fi

.TP
.RI Return( vars )
This tells
.B scons
what variable(s) to use as the return value(s) of the current configuration
file. These variables will be returned to the "calling" configuration file
as the return value(s) of 
.BR SConscript ().
Multiple variable names can be passed to 
.BR Return ()
in a space delimited string or as seperate arguments. Example:

.IP
.nf
Return("foo")
.PP
.fi

.TP 
.RI Default( targets )
This specifies a list of default targets. Default targets will be built by
.B scons
if no explicit targets are given on the comamnd line. Multiple targets can
be specified either as a space delimited string of target file names or as
seperate arguments.
.BR Default ()
will also accept the return value of any of the ccnstruction environment
builder methods.
Example:

.IP
.nf
Default('foo', 'bar', 'baz')
.PP
.fi

.TP
.RI Help( text )
This specifies help text to be printed if the 
.B -h 
argument is given to
.BR scons .
.B scons
will exit after printing out the help text.

.TP
.RI BuildDir( build_dir ", " src_dir ", [" duplicate ])
This specifies a build directory to use for all derived files.  
.I build_dir
specifies the build directory to be used for all derived files that would
normally be built under
.IR src_dir .
Multiple build directories can be set up for multiple build variants, for
example. 
.B scons
will link or copy (depending on the platform) all the source files into the
build directory if 
.I duplicate
is set to 1 (the default). If 
.I duplicate
is set to 0, then 
.B scons 
will not copy or link any source files, which may cause build problems in
certain situations (e.g. C source files that are generated by the
build). 
.IR duplicate =0
is usually safe, and is always more efficient than 
.IR duplicate =1.

.TP
.RI Dir( name ", [" directory ])
This returns an object that represents a given directory 
.IR name . 
.I name
can be a relative or absolute path. 
.I directory
is an optional directory that will be used as the parent directory. 


.TP 
.RI File( name ", [" directory ])
This returns an object that represents a given file 
.IR name . 
.I name
can be a relative or absolute path. 
.I directory
is an optional directory that will be used as the parent directory. 


.TP 
.RI SetCommandHandler( function )

This registers a user
.I function
as the handler
for interpreting and executing command-line strings.
The function must expect three arguments:

.IP
.nf
def commandhandler(cmd, args, env):
.PP
.fi

.I cmd
is the path to the command to be executed.
.I args
is that arguments to the command.
.I env
is a dictionary of the environment variables
in which the command should be executed.


.SH EXTENDING SCONS
.SS Builder Objects
.B scons
can be extended by adding new builders to a construction
environment using the 
.B Builder 
function. Builder accepts the following
arguments:

.IP name
The name of the builder. This will be the of the construction environment
method used to create an instance of the builder.

.IP action
The command line string used to build the target from the source. 
.B action
can also be a dictionary
mapping source file name suffixes to command line string
(if the builder should accept multiple source file extensions),
a Python function,
or an Action object
(see the next section).

.IP prefix 
The prefix that will be prepended to the target file name.

.IP suffix
The suffix that will be appended to the target file name.

.IP src_suffix
The expected source file name suffix.

.IP src_builder
Specifies a builder to use when a source file name suffix does not match
any of the suffixes of the builder. Using this argument produces a
multi-stage builder.

.SS Action Objects

The Builder function will turn its
.B action
keyword argument into an appropriate
internal Action object.
Occasionally, it may be more efficient
to create an explicit Action object
and use it to initialize multiple
Builder objects,
rather than let each separate Builder object
create a separate Action.

The Action function takes a single argument
and returns an appropriate object for the action
represented by the type of the argument:

.IP Action
If the argument is already an Action object,
the object is simply returned.
.IP String
If the argument is a string,
a command-line Action is returned.
.IP Function
If the argument is a Python function,
a function Action is returned.
.IP List
If the argument is a list,
then a list of Action objects is returned.
An Action object is created as necessary
for each element in the list.
.PP
If the action argument is not one of the above,
None is returned.
.SS Variable Substitution
.B scons
performs construction variable interpolation on the strings that make up
the command line of builders before executing the command.
Variables are introduced by a
.B $
prefix.
Besides construction variables, scons provides the following
variables for each command execution:
.IP TARGET
The file name of the target being built, or the file name of the first 
target if multiple targets are being built.
.IP TARGETS
The file names of all targets being built.
.IP SOURCES
The file names of the sources of the build command.
.LP 
For example, given the construction variable CC='cc', targets=['foo'], and
sources=['foo.c', 'bar.c']:
.IP
.nf
action='$CC -c -o $TARGET $SOURCES'
.PP
.fi
would produce the command line:
.IP
.nf
cc -c -o foo foo.c bar.c
.PP
.fi
Variable names may be surrounded by curly braces ({})
to separate the name from the trailing characters.
Within the curly braces, a variable name may have
a Python slice subscript appended to select one
or more items from a list.
In the previous example, the string:
.IP
.nf
${SOURCES[1]}
.PP
.fi
would produce:
.IP
.nf
bar.c
.PP
.fi
Additionally, a variable name may
have the following special
modifiers appended within the enclosing curly braces
to modify the interpolated string:

.IP base
The base path of the file name,
including the directory path
but excluding any suffix.

.IP dir
The name of the directory in which the file exists.

.IP file
The file name,
minus any directory portion.

.IP filebase
Just the basename of the file,
minus any suffix
and minus the directory.

.IP suffix
Just the file suffix.

.LP

For example, the specified target will
expand as follows for the corresponding modifiers:

.IP
.nf
$TARGET              => sub/dir/file.x
${TARGET.base}       => sub/dir/file
${TARGET.dir}        => sub/dir
${TARGET.file}       => file.x
${TARGET.filebase}   => file
${TARGET.suffix}     => .x
.PP
.fi

.\" XXX document how to add user defined scanners. 

.SH EXAMPLES

To help you get started using SCons,
here is a brief overview of some common tasks:

.SS Basic Compilation From a Single Source File

.RS
.nf
env = Environment()
env.Program(target = 'foo', source = 'foo.c')
.RE
.fi

.SS Basic Compilation From Multiple Source Files

.RS
.nf
env = Environment()
env.Program(target = 'foo', source = 'f1.c f2.c f3.c')
.RE
.fi

.SS Setting a Compilation Flag

.RS
.nf
env = Environment(CCFLAGS = '-g')
env.Program(target = 'foo', source = 'foo.c')
.RE
.fi

.SS Search The Local Directory For .h Files

Note:  You do
.I not
need to specify -I options by hand.
SCons will construct the right -I options from CPPPATH.

.RS
.nf
env = Environment(CPPPATH = ['.'])
env.Program(target = 'foo', source = 'foo.c')
.RE
.fi

.SS Search Multiple Directories For .h Files

.RS
.nf
env = Environment(CPPPATH = ['include1', 'include2'])
env.Program(target = 'foo', source = 'foo.c')
.RE
.fi

.SS Defining Your Own Builder Object

You
.I must
specify a "name" keyword argument for the builder,
as that becomes the Environment method name
you use to call the builder.
Notice also that you can leave off the suffixes,
and the builder will add them automatically.

.RS
.nf
bld = Builder(name = 'PDFBuilder',
              action = 'pdftex < $SOURCES > $TARGET'
              suffix = '.pdf',
              src_suffix = '.tex')
env = Environment(BUILDERS = [bld])
env.PDFBuilder(target = 'foo.pdf', source = 'foo.tex')

# The following creates "bar.pdf" from "bar.text"
env.PDFBuilder(target = 'bar', source = 'bar')
.RE
.fi

.SS Creating a Hierarchical Build

Notice that the file names specified in a subdirectory
are relative to that subdirectory.

.RS
.nf
SConstruct:

    env = Environment()
    env.Program(target = 'foo', source = 'foo.c')

    SConscript('sub/SConscript')

sub/SConscript:

    env = Environment()
    # Builds sub/foo from sub/foo.c
    env.Program(target = 'foo', source = 'foo.c')

    SConscript('dir/SConscript')

sub/dir/SConscript:

    env = Environment()
    # Builds sub/dir/foo from sub/dir/foo.c
    env.Program(target = 'foo', source = 'foo.c')
.RE
.fi

.SS Sharing Variables Between SConscript Files

You must explicitly Export() and Import() variables that
you want to share between SConscript files.

.RS
.nf
SConstruct:

    env = Environment()
    env.Program(target = 'foo', source = 'foo.c')

    Export("env")
    SConscript('subdirectory/SConscript')

subdirectory/SConscript:

    Import("env")
    env.Program(target = 'foo', source = 'foo.c')
.RE
.fi

.SS Building Multiple Variants From the Same Source

Use the BuildDir() method to establish
one or more separate build directories for
a given source directory,
then use the SConscript() method
to specify the SConscript files
in the build directories:

.RS
.nf
SConstruct:

    Export("ccflags")

    ccflags = '-DFOO'
    BuildDir('foo', 'src')
    SConscript('foo/SConscript')

    ccflags = '-DBAR'
    BuildDir('bar', 'src')
    SConscript('bar/SConscript')

src/SConscript:

    Import("ccflags")
    env = Environment(CCFLAGS = ccflags)
    env.Program(target = 'src', source = 'src.c')
.RE
.fi

Note the use of the Export() method
to set the "ccflags" variable to a different
value for each variant build.

.SH ENVIRONMENT

.IP SCONS_LIB_DIR
Specifies the directory that contains the SCons Python module directory
(e.g. /home/aroach/scons-src-0.01/src/engine).

.IP SCONSFLAGS
A string of options that will be used by scons in addition to those passed
on the command line.

.SH "SEE ALSO"
.B scons
User Manual,
.B scons
Design Document,
.B scons
source code.

.SH AUTHORS
Steven Knight <knight@baldmt.com>
.RS
.RE
Anthony Roach <aroach@electriceyeball.com>