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
|
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2001 - 2016 The SCons Foundation
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.
-->
<!-- lifted from troff+man by doclifter -->
<refentry id='sconstime1'
xmlns="http://www.scons.org/dbxsd/v1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.scons.org/dbxsd/v1.0 http://www.scons.org/dbxsd/v1.0/scons.xsd">
<refmeta>
<refentrytitle>SCONS-TIME</refentrytitle>
<manvolnum>1</manvolnum>
<refmiscinfo class='source'>SCons 2.5.1</refmiscinfo>
<refmiscinfo class='manual'>SCons 2.5.1</refmiscinfo>
</refmeta>
<refnamediv id='name'>
<refname>scons-time</refname>
<refpurpose>generate and display SCons timing information</refpurpose>
</refnamediv>
<refsynopsisdiv id='synopsis'>
<cmdsynopsis>
<command>scons-time</command>
<arg choice='plain'><replaceable>subcommand</replaceable></arg>
<arg choice='opt' rep='repeat'><replaceable>options</replaceable></arg>
<arg choice='opt' rep='repeat'><replaceable>arguments</replaceable></arg>
</cmdsynopsis>
</refsynopsisdiv>
<!-- body begins here -->
<refsect1 id='generating_timing_information'><title>Generating Timing Information</title>
<para><emphasis role="bold">scons-time run</emphasis>
[<option>-hnqv</option>]
[<option>--aegis=</option><replaceable>PROJECT</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--number=</option><replaceable>NUMBER</replaceable>]
[<option>--outdir=</option><replaceable>OUTDIR</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>--python=</option><replaceable>PYTHON</replaceable>]
[<option>-s </option><emphasis>DIR</emphasis>]
[<option>--scons=</option><replaceable>SCONS</replaceable>]
[<option>--svn=</option><replaceable>URL</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
<refsect2 id='extracting_function_timings'><title>Extracting Function Timings</title>
<para><emphasis role="bold">scons-time func</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>--func=</option><replaceable>NAME</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title= TITLE</option>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</refsect2>
<refsect2 id='extracting_memory_statistics'><title>Extracting Memory Statistics</title>
<para><emphasis role="bold">scons-time mem</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>--stage=</option><replaceable>STAGE</replaceable>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title=</option><replaceable>TITLE</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</refsect2>
<refsect2 id='extracting_object_counts'><title>Extracting Object Counts</title>
<para><emphasis role="bold">scons-time obj</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>--stage=</option><replaceable>STAGE</replaceable>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title=</option><replaceable>TITLE</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</refsect2>
<refsect2 id='extracting_execution_times'><title>Extracting Execution Times</title>
<para><emphasis role="bold">scons-time time</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title=</option><replaceable>TITLE</replaceable>]
[<option>--which=</option><replaceable>WHICH</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</refsect2>
<refsect2 id='help_text'><title>Help Text</title>
<para><emphasis role="bold">scons-time help</emphasis>
<emphasis>SUBCOMMAND</emphasis>
[...]</para>
<!-- '\"========================================================================== -->
</refsect2>
</refsect1>
<refsect1 id='description'><title>DESCRIPTION</title>
<para>The
<command>scons-time</command>
command runs an SCons configuration
through a standard set of profiled timings
and can extract and graph information from the
resulting profiles and log files of those timings.
The action to be performed by the
<command>scons-time</command>
script is specified
by a subcommand, the first argument on the command line.
See the
<link linkend="subcommands">SUBCOMMANDS</link>
section below for information about the operation
of specific subcommands.</para>
<para>The basic way to use
<command>scons-time</command>
is to run the
<emphasis role="bold">scons-time run</emphasis>
subcommand
(possibly multiple times)
to generate profile and log file output,
and then use one of the other
subcommands to display the results
captured in the profiles and log files
for a particular kind of information:
function timings
(the
<emphasis role="bold">scons-time func</emphasis>
subcommand),
total memory used
(the
<emphasis role="bold">scons-time mem</emphasis>
subcommand),
object counts
(the
<emphasis role="bold">scons-time obj</emphasis>
subcommand)
and overall execution time
(the
<emphasis role="bold">scons-time time</emphasis>
subcommand).
Options exist to place and find the
profiles and log files in separate directories,
to generate the output in a format suitable
for graphing with the
<citerefentry><refentrytitle>gnuplot</refentrytitle><manvolnum>1</manvolnum></citerefentry>
program,
and so on.</para>
<para>There are two basic ways the
<emphasis role="bold">scons-time run</emphasis>
subcommand
is intended to be used
to gather timing statistics
for a configuration.
One is to use the
<option>--svn=</option>
option to test a configuration against
a list of revisions from the SCons Subversion repository.
This will generate a profile and timing log file
for every revision listed with the
<option>--number=</option>
option,
and can be used to look at the
impact of committed changes to the
SCons code base on a particular
configuration over time.</para>
<para>The other way is to profile incremental changes to a
local SCons code base during a development cycle--that is,
to look at the performance impact of changes
you're making in the local tree.
In this mode,
you run the
<emphasis role="bold">scons-time run</emphasis>
subcommand
<emphasis>without</emphasis>
the
<option>--svn=</option>
option,
in which case it simply looks in the profile/log file output directory
(the current directory by default)
and automatically figures out the
<emphasis>next</emphasis>
run number for the output profile and log file.
Used in this way,
the development cycle goes something like:
make a change to SCons;
run
<emphasis role="bold">scons-time run</emphasis>
to profile it against a specific configuration;
make another change to SCons;
run
<emphasis role="bold">scons-time run</emphasis>
again to profile it;
etc.</para>
<!-- '\"========================================================================== -->
</refsect1>
<refsect1 id='options'><title>OPTIONS</title>
<para>The
<command>scons-time</command>
command only supports a few global options:</para>
<variablelist>
<varlistentry>
<term>-h, --help</term>
<listitem>
<para>Displays the global help text and exits,
identical to the
<emphasis role="bold">scons-time help</emphasis>
subcommand.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-V, --version</term>
<listitem>
<para>Displays the
<command>scons-time</command>
version and exits.</para>
</listitem>
</varlistentry>
</variablelist>
<para>Most functionality is controlled by options
to the individual subcommands.
See the next section for information
about individual subcommand options.</para>
<!-- '\"========================================================================== -->
</refsect1>
<refsect1 id='subcommands'><title>SUBCOMMANDS</title>
<para>The
<command>scons-time</command>
command supports the following
individual subcommands.</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
<refsect2 id='the_func_subcommand'><title>The func Subcommand</title>
<para><emphasis role="bold">scons-time func</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>--func=</option><replaceable>NAME</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title= TITLE</option>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<para>The
<emphasis role="bold">scons-time func</emphasis>
subcommand displays timing information
for a specific Python function within SCons.
By default, it extracts information about the
<emphasis role="bold">_main</emphasis>()
function,
which includes the Python profiler timing
for all of SCons.</para>
<para>The
<emphasis role="bold">scons-time func</emphasis>
subcommand extracts function timing information
from all the specified file arguments,
which should be Python profiler output files.
(Normally, these would be
<emphasis role="bold">*.prof</emphasis>
files generated by the
<emphasis role="bold">scons-time run</emphasis>
subcommand,
but they can actually be generated
by any Python profiler invocation.)
All file name arguments will be
globbed for on-disk files.</para>
<para>If no arguments are specified,
then function timing information
will be extracted from all
<emphasis role="bold">*.prof</emphasis>
files,
or the subset of them
with a prefix specified by the
<option>-p</option>
option.</para>
<para>Options include:</para>
<variablelist>
<varlistentry>
<term>-C DIRECTORY, --chdir=DIRECTORY</term>
<listitem>
<para>Changes to the specified
<emphasis>DIRECTORY</emphasis>
before looking for the specified files
(or files that match the specified patterns).</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-f FILE, --file=FILE</term>
<listitem>
<para>Reads configuration information from the specified
<emphasis>FILE</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-fmt=FORMAT, --format=FORMAT</term>
<listitem>
<para>Reports the output in the specified
<emphasis>FORMAT</emphasis>.
The formats currently supported are
<emphasis role="bold">ascii</emphasis>
(the default)
and
<emphasis role="bold">gnuplot</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--func=NAME</term>
<listitem>
<para>Extracts timings for the specified function
<emphasis>NAME</emphasis>.
The default is to report cumulative timings for the
<emphasis role="bold">_main</emphasis>()
function,
which contains the entire SCons run.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-h, --help</term>
<listitem>
<para>Displays help text for the
<emphasis role="bold">scons-time func</emphasis>
subcommand.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-p STRING, --prefix=STRING</term>
<listitem>
<para>Specifies the prefix string for profiles
from which to extract function timing information.
This will be used to search for profiles
if no arguments are specified on the command line.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-t NUMBER, --tail=NUMBER</term>
<listitem>
<para>Only extracts function timings from the last
<emphasis>NUMBER</emphasis>
files.</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</listitem>
</varlistentry>
</variablelist>
</refsect2>
<refsect2 id='the_help_subcommand'><title>The help Subcommand</title>
<para><emphasis role="bold">scons-time help</emphasis>
<emphasis>SUBCOMMAND</emphasis>
[...]
The
<emphasis role="bold">help</emphasis>
subcommand prints help text for any
other subcommands listed as later arguments on the command line.</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</refsect2>
<refsect2 id='the_mem_subcommand'><title>The mem Subcommand</title>
<para><emphasis role="bold">scons-time mem</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>--stage=</option><replaceable>STAGE</replaceable>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title=</option><replaceable>TITLE</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<para>The
<emphasis role="bold">scons-time mem</emphasis>
subcommand displays how much memory SCons uses.</para>
<para>The
<emphasis role="bold">scons-time mem</emphasis>
subcommand extracts memory use information
from all the specified file arguments,
which should be files containing output from
running SCons with the
<option>--debug=memory</option>
option.
(Normally, these would be
<emphasis role="bold">*.log</emphasis>
files generated by the
<emphasis role="bold">scons-time run</emphasis>
subcommand.)
All file name arguments will be
globbed for on-disk files.</para>
<para>If no arguments are specified,
then memory information
will be extracted from all
<emphasis role="bold">*.log</emphasis>
files,
or the subset of them
with a prefix specified by the
<option>-p</option>
option.</para>
<variablelist>
<varlistentry>
<term>-C DIR, --chdir=DIR</term>
<listitem>
<para>Changes to the specified
<emphasis>DIRECTORY</emphasis>
before looking for the specified files
(or files that match the specified patterns).</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-f FILE, --file=FILE</term>
<listitem>
<para>Reads configuration information from the specified
<emphasis>FILE</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-fmt=FORMAT, --format=FORMAT</term>
<listitem>
<para>Reports the output in the specified
<emphasis>FORMAT</emphasis>.
The formats currently supported are
<emphasis role="bold">ascii</emphasis>
(the default)
and
<emphasis role="bold">gnuplot</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-h, --help</term>
<listitem>
<para>Displays help text for the
<emphasis role="bold">scons-time mem</emphasis>
subcommand.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-p STRING, --prefix=STRING</term>
<listitem>
<para>Specifies the prefix string for log files
from which to extract memory usage information.
This will be used to search for log files
if no arguments are specified on the command line.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--stage=STAGE</term>
<listitem>
<para>Prints the memory used at the end of the specified
<emphasis>STAGE</emphasis>:
<emphasis role="bold">pre-read</emphasis>
(before the SConscript files are read),
<emphasis role="bold">post-read ,</emphasis>
(after the SConscript files are read),
<emphasis role="bold">pre-build</emphasis>
(before any targets are built)
or
<emphasis role="bold">post-build</emphasis>
(after any targets are built).
If no
<option>--stage</option>
option is specified,
the default behavior is
<emphasis role="bold">post-build</emphasis>,
which reports the final amount of memory
used by SCons during each run.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-t NUMBER, --tail=NUMBER</term>
<listitem>
<para>Only reports memory statistics from the last
<emphasis>NUMBER</emphasis>
files.</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</listitem>
</varlistentry>
</variablelist>
</refsect2>
<refsect2 id='the_obj_subcommand'><title>The obj Subcommand</title>
<para><emphasis role="bold">scons-time obj</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>--stage=</option><replaceable>STAGE</replaceable>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title=</option><replaceable>TITLE</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<para>The
<emphasis role="bold">scons-time obj</emphasis>
subcommand displays how many objects of a specific named type
are created by SCons.</para>
<para>The
<emphasis role="bold">scons-time obj</emphasis>
subcommand extracts object counts
from all the specified file arguments,
which should be files containing output from
running SCons with the
<option>--debug=count</option>
option.
(Normally, these would be
<emphasis role="bold">*.log</emphasis>
files generated by the
<emphasis role="bold">scons-time run</emphasis>
subcommand.)
All file name arguments will be
globbed for on-disk files.</para>
<para>If no arguments are specified,
then object counts
will be extracted from all
<emphasis role="bold">*.log</emphasis>
files,
or the subset of them
with a prefix specified by the
<option>-p</option>
option.</para>
<variablelist>
<varlistentry>
<term>-C DIR, --chdir=DIR</term>
<listitem>
<para>Changes to the specified
<emphasis>DIRECTORY</emphasis>
before looking for the specified files
(or files that match the specified patterns).</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-f FILE, --file=FILE</term>
<listitem>
<para>Reads configuration information from the specified
<emphasis>FILE</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-fmt=FORMAT, --format=FORMAT</term>
<listitem>
<para>Reports the output in the specified
<emphasis>FORMAT</emphasis>.
The formats currently supported are
<emphasis role="bold">ascii</emphasis>
(the default)
and
<emphasis role="bold">gnuplot</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-h, --help</term>
<listitem>
<para>Displays help text for the
<emphasis role="bold">scons-time obj</emphasis>
subcommand.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-p STRING, --prefix=STRING</term>
<listitem>
<para>Specifies the prefix string for log files
from which to extract object counts.
This will be used to search for log files
if no arguments are specified on the command line.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--stage=STAGE</term>
<listitem>
<para>Prints the object count at the end of the specified
<emphasis>STAGE</emphasis>:
<emphasis role="bold">pre-read</emphasis>
(before the SConscript files are read),
<emphasis role="bold">post-read ,</emphasis>
(after the SConscript files are read),
<emphasis role="bold">pre-build</emphasis>
(before any targets are built)
or
<emphasis role="bold">post-build</emphasis>
(after any targets are built).
If no
<option>--stage</option>
option is specified,
the default behavior is
<emphasis role="bold">post-build</emphasis>,
which reports the final object count during each run.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-t NUMBER, --tail=NUMBER</term>
<listitem>
<para>Only reports object counts from the last
<emphasis>NUMBER</emphasis>
files.</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</listitem>
</varlistentry>
</variablelist>
</refsect2>
<refsect2 id='the_run_subcommand'><title>The run Subcommand</title>
<para><emphasis role="bold">scons-time run</emphasis>
[<option>-hnqv</option>]
[<option>--aegis=</option><replaceable>PROJECT</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--number=</option><replaceable>NUMBER</replaceable>]
[<option>--outdir=</option><replaceable>OUTDIR</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>--python=</option><replaceable>PYTHON</replaceable>]
[<option>-s </option><emphasis>DIR</emphasis>]
[<option>--scons=</option><replaceable>SCONS</replaceable>]
[<option>--svn=</option><replaceable>URL</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]
The
<emphasis role="bold">scons-time run</emphasis>
subcommand is the basic subcommand
for profiling a specific configuration
against a version of SCons.</para>
<para>The configuration to be tested
is specified as a list of files
or directories that will be unpacked or copied
into a temporary directory
in which SCons will be invoked.
The
<emphasis role="bold">scons-time run</emphasis>
subcommand understands file suffixes like
<markup>.tar</markup>,
<markup>.tar.gz</markup>,
<markup>.tgz</markup>
and
<markup>.zip</markup>
and will unpack their contents into a temporary directory.
If more than one argument is specified,
each one will be unpacked or copied
into the temporary directory "on top of"
the previous archives or directories,
so the expectation is that multiple
specified archives share the same directory layout.</para>
<para>Once the file or directory arguments are unpacked or
copied to the temporary directory,
the
<emphasis role="bold">scons-time run</emphasis>
subcommand runs the
requested version of SCons
against the configuration
three times:</para>
<variablelist>
<varlistentry>
<term>Startup</term>
<listitem>
<para>SCons is run with the
<option>--help</option>
option so that just the SConscript files are read,
and then the default help text is printed.
This profiles just the perceived "overhead" of starting up SCons
and processing the SConscript files.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Full build</term>
<listitem>
<para>SCons is run to build everything specified in the configuration.
Specific targets to be passed in on the command l ine
may be specified by the
<emphasis role="bold">targets</emphasis>
keyword in a configuration file; see below for details.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>Rebuild</term>
<listitem>
<para>SCons is run again on the same just-built directory.
If the dependencies in the SCons configuration are correct,
this should be an up-to-date, "do nothing" rebuild.</para>
</listitem>
</varlistentry>
</variablelist>
<para>Each invocation captures the output log file and a profile.</para>
<para>The
<emphasis role="bold">scons-time run</emphasis>
subcommand supports the following options:</para>
<variablelist>
<varlistentry>
<term>--aegis=PROJECT</term>
<listitem>
<para>Specifies the Aegis
<emphasis>PROJECT</emphasis>
from which the
version(s) of
<emphasis role="bold">scons</emphasis>
being timed will be extracted.
When
<option>--aegis</option>
is specified, the
<option>--number=</option><replaceable>NUMBER</replaceable>
option specifies delta numbers
that will be tested.
Output from each invocation run will be placed in file
names that match the Aegis delta numbers.
If the
<option>--number=</option>
option is not specified,
then the default behavior is to time the
tip of the specified
<emphasis>PROJECT</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-f FILE, --file=FILE</term>
<listitem>
<para>Reads configuration information from the specified
<emphasis>FILE</emphasis>.
This often provides a more convenient way to specify and
collect parameters associated with a specific timing configuration
than specifying them on the command line.
See the
<link linkend="configuration_file">CONFIGURATION FILE</link>
section below
for information about the configuration file parameters.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-h, --help</term>
<listitem>
<para>Displays help text for the
<emphasis role="bold">scons-time run</emphasis>
subcommand.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-n, --no-exec</term>
<listitem>
<para>Do not execute commands,
just printing the command-line equivalents of what would be executed.
Note that the
<command>scons-time</command>
script actually executes its actions in Python,
where possible,
for portability.
The commands displayed are UNIX
<emphasis>equivalents</emphasis>
of what it's doing.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--number=NUMBER</term>
<listitem>
<para>Specifies the run number to be used in the names of
the log files and profile outputs generated by this run.</para>
</listitem>
</varlistentry>
</variablelist>
<para>When used in conjunction with the
<option>--aegis=</option><replaceable>PROJECT</replaceable>
option,
<emphasis>NUMBER</emphasis>
specifies one or more comma-separated Aegis delta numbers
that will be retrieved automatically from the specified Aegis
<emphasis>PROJECT</emphasis>.</para>
<para>When used in conjunction with the
<option>--svn=</option><replaceable>URL</replaceable>
option,
<emphasis>NUMBER</emphasis>
specifies one or more comma-separated Subversion revision numbers
that will be retrieved automatically from the Subversion
repository at the specified
<emphasis>URL</emphasis>.
Ranges of delta or revision numbers
may be specified be separating two numbers
with a hyphen
(<emphasis role="bold">-</emphasis>).</para>
<para>Example:</para>
<literallayout class="monospaced">
% scons-time run --svn=<ulink url='http://scons.tigris.org/svn/trunk'>http://scons.tigris.org/svn/trunk</ulink> --num=1247,1249-1252 .
</literallayout> <!-- .fi -->
<variablelist>
<varlistentry>
<term>-p STRING, --prefix=STRING</term>
<listitem>
<para>Specifies the prefix string to be used for all of the log files
and profiles generated by this run.
The default is derived from the first
specified argument:
if the first argument is a directory,
the default prefix is the name of the directory;
if the first argument is an archive
(tar or zip file),
the default prefix is the the base name of the archive,
that is, what remains after stripping the archive suffix
(<markup>.tgz</markup>, <markup>.tar.gz</markup> or <markup>.zip</markup>).</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--python=PYTHON</term>
<listitem>
<para>Specifies a path to the Python executable to be used
for the timing runs.
The default is to use the same Python executable that
is running the
<command>scons-time</command>
command itself.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-q, --quiet</term>
<listitem>
<para>Suppresses display of the command lines being executed.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-s DIR, --subdir=DIR</term>
<listitem>
<para>Specifies the name of directory or subdirectory
from which the commands should be executed.
The default is XXX</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--scons=SCONS</term>
<listitem>
<para>Specifies a path to the SCons script to be used
for the timing runs.
The default is XXX</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--svn=URL, --subversion=URL</term>
<listitem>
<para>Specifies the
<emphasis>URL</emphasis>
of the Subversion repository from which the
version(s) of
<emphasis role="bold">scons</emphasis>
being timed will be extracted.
When
<option>--svn</option>
is specified, the
<option>--number=</option><replaceable>NUMBER</replaceable>
option specifies revision numbers
that will be tested.
Output from each invocation run will be placed in file
names that match the Subversion revision numbers.
If the
<option>--number=</option>
option is not specified,
then the default behavior is to time the
<emphasis role="bold">HEAD</emphasis>
of the specified
<emphasis>URL</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-v, --verbose</term>
<listitem>
<para>Displays the output from individual commands to the screen
(in addition to capturing the output in log files).</para>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
</listitem>
</varlistentry>
</variablelist>
</refsect2>
<refsect2 id='the_time_subcommand'><title>The time Subcommand</title>
<para><emphasis role="bold">scons-time time</emphasis>
[<option>-h</option>]
[<option>--chdir=</option><replaceable>DIR</replaceable>]
[<option>-f </option><emphasis>FILE</emphasis>]
[<option>--fmt=</option><replaceable>FORMAT</replaceable>]
[<option>-p </option><emphasis>STRING</emphasis>]
[<option>-t </option><emphasis>NUMBER</emphasis>]
[<option>--title=</option><replaceable>TITLE</replaceable>]
[<option>--which=</option><replaceable>WHICH</replaceable>]
[<emphasis>ARGUMENTS</emphasis>]</para>
<para>The
<emphasis role="bold">scons-time time</emphasis>
subcommand displays SCons execution times
as reported by the
<userinput>scons --debug=time</userinput>
option.</para>
<para>The
<emphasis role="bold">scons-time time</emphasis>
subcommand extracts SCons timing
from all the specified file arguments,
which should be files containing output from
running SCons with the
<option>--debug=time</option>
option.
(Normally, these would be
<emphasis role="bold">*.log</emphasis>
files generated by the
<emphasis role="bold">scons-time run</emphasis>
subcommand.)
All file name arguments will be
globbed for on-disk files.</para>
<para>If no arguments are specified,
then execution timings
will be extracted from all
<emphasis role="bold">*.log</emphasis>
files,
or the subset of them
with a prefix specified by the
<option>-p</option>
option.</para>
<variablelist>
<varlistentry>
<term>-C DIR, --chdir=DIR</term>
<listitem>
<para>Changes to the specified
<emphasis>DIRECTORY</emphasis>
before looking for the specified files
(or files that match the specified patterns).</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-f FILE, --file=FILE</term>
<listitem>
<para>Reads configuration information from the specified
<emphasis>FILE</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-fmt=FORMAT, --format=FORMAT</term>
<listitem>
<para>Reports the output in the specified
<emphasis>FORMAT</emphasis>.
The formats currently supported are
<emphasis role="bold">ascii</emphasis>
(the default)
and
<emphasis role="bold">gnuplot</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-h, --help</term>
<listitem>
<para>Displays help text for the
<emphasis role="bold">scons-time time</emphasis>
subcommand.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-p STRING, --prefix=STRING</term>
<listitem>
<para>Specifies the prefix string for log files
from which to extract execution timings.
This will be used to search for log files
if no arguments are specified on the command line.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>-t NUMBER, --tail=NUMBER</term>
<listitem>
<para>Only reports object counts from the last
<emphasis>NUMBER</emphasis>
files.</para>
</listitem>
</varlistentry>
<varlistentry>
<term>--which=WHICH</term>
<listitem>
<para>Prints the execution time for the specified
<emphasis>WHICH</emphasis>
value:
<emphasis role="bold">total</emphasis>
(the total execution time),
<emphasis role="bold">SConscripts</emphasis>
(total execution time for the SConscript files themselves),
<emphasis role="bold">SCons</emphasis>
(exectuion time in SCons code itself)
or
<emphasis role="bold">commands</emphasis>
(execution time of the commands and other actions
used to build targets).
If no
<option>--which</option>
option is specified,
the default behavior is
<emphasis role="bold">total</emphasis>,
which reports the total execution time for each run.</para>
<!-- '\"========================================================================== -->
</listitem>
</varlistentry>
</variablelist>
</refsect2>
</refsect1>
<refsect1 id='configuration_file'><title>CONFIGURATION FILE</title>
<para>Various
<command>scons-time</command>
subcommands can read information from a specified
configuration file when passed the
<option>-f</option>
or
<option>--file</option>
options.
The configuration file is actually executed as a Python script.
Setting Python variables in the configuration file
controls the behavior of the
<command>scons-time</command>
script more conveniently than having to specify
command-line options or arguments for every run,
and provides a handy way to "shrink-wrap"
the necessary information for producing (and reporting)
consistent timing runs for a given configuration.</para>
<variablelist>
<varlistentry>
<term><emphasis role="bold">aegis</emphasis></term>
<listitem>
<para>The Aegis executable for extracting deltas.
The default is simply
<emphasis role="bold">aegis</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">aegis_project</emphasis></term>
<listitem>
<para>The Aegis project from which deltas should be extracted.
The default is whatever is specified
with the
<option>--aegis=</option>
command-line option.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">archive_list</emphasis></term>
<listitem>
<para>A list of archives (files or directories)
that will be copied to the temporary directory
in which SCons will be invoked.
<markup>.tar</markup>,
<markup>.tar.gz</markup>,
<markup>.tgz</markup>
and
<markup>.zip</markup>
files will have their contents unpacked in
the temporary directory.
Directory trees and files will be copied as-is.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">initial_commands</emphasis></term>
<listitem>
<para>A list of commands that will be executed
before the actual timed
<emphasis role="bold">scons</emphasis>
runs.
This can be used for commands that are necessary
to prepare the source tree-for example,
creating a configuration file
that should not be part of the timed run.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">key_location</emphasis></term>
<listitem>
<para>The location of the key on Gnuplot graphing information
generated with the
<option>--format=gnuplot</option>
option.
The default is
<emphasis role="bold">bottom left</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">prefix</emphasis></term>
<listitem>
<para>The file name prefix to be used when
running or extracting timing for this configuration.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">python</emphasis></term>
<listitem>
<para>The path name of the Python executable
to be used when running or extracting information
for this configuration.
The default is the same version of Python
used to run the SCons</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">scons</emphasis></term>
<listitem>
<para>The path name of the SCons script to be used
when running or extracting information
for this configuration.
The default is simply
<emphasis role="bold">scons</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">scons_flags</emphasis></term>
<listitem>
<para>The
<emphasis role="bold">scons</emphasis>
flags used when running SCons to collect timing information.
The default value is
<option>--debug=count --debug=memory --debug=time --debug=memoizer</option>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">scons_lib_dir</emphasis></term>
<term><emphasis role="bold">scons_wrapper</emphasis></term>
<term><emphasis role="bold">startup_targets</emphasis></term>
<term><emphasis role="bold">subdir</emphasis></term>
<listitem>
<para>The subdirectory of the project into which the
<command>scons-time</command>
script should change
before executing the SCons commands to time.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">subversion_url</emphasis></term>
<listitem>
<para>The Subversion URL from</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">svn</emphasis></term>
<listitem>
<para>The subversion executable used to
check out revisions of SCons to be timed.
The default is simple
<emphasis role="bold">svn</emphasis>.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">svn_co_flag</emphasis></term>
<term><emphasis role="bold">tar</emphasis></term>
<term><emphasis role="bold">targets</emphasis></term>
<listitem>
<para>A string containing the targets that should be added to
the command line of every timed
<emphasis role="bold">scons</emphasis>
run.
This can be used to restrict what's being timed to a
subset of the full build for the configuration.</para>
</listitem>
</varlistentry>
<varlistentry>
<term><emphasis role="bold">targets0</emphasis></term>
<term><emphasis role="bold">targets1</emphasis></term>
<term><emphasis role="bold">targets2</emphasis></term>
<term><emphasis role="bold">title</emphasis></term>
<term><emphasis role="bold">unzip</emphasis></term>
<term><emphasis role="bold">verbose</emphasis></term>
<term><emphasis role="bold">vertical_bars</emphasis></term>
<listitem>
<!-- '\"\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\-\- -->
<para></para> <!-- FIXME: blank list item -->
</listitem>
</varlistentry>
</variablelist>
<refsect2 id='example'><title>Example</title>
<para>Here is an example
<command>scons-time</command>
configuration file
for a hypothetical sample project:</para>
<literallayout class="monospaced">
# The project doesn't use SCons natively (yet), so we're
# timing a separate set of SConscript files that we lay
# on top of the vanilla unpacked project tarball.
arguments = ['project-1.2.tgz', 'project-SConscripts.tar']
# The subdirectory name contains the project version number,
# so tell scons-time to chdir there before building.
subdir = 'project-1.2'
# Set the prefix so output log files and profiles are named:
# project-000-[012].{log,prof}
# project-001-[012].{log,prof}
# etc.
prefix = 'project'
# The SConscript files being tested don't do any SConf
# configuration, so run their normal ./configure script
# before we invoke SCons.
initial_commands = [
'./configure',
]
# Only time building the bin/project executable.
targets = 'bin/project'
# Time against SCons revisions of the branches/core branch
subversion_url = '<ulink url='http://scons.tigris.org/svn/scons/branches/core'>http://scons.tigris.org/svn/scons/branches/core</ulink>'
</literallayout> <!-- .fi -->
<!-- '\"========================================================================== -->
</refsect2>
</refsect1>
<refsect1 id='environment'><title>ENVIRONMENT</title>
<para>The
<command>scons-time</command>
script uses the following environment variables:</para>
<variablelist>
<varlistentry>
<term><emphasis role="bold">PRESERVE</emphasis></term>
<listitem>
<para>If this value is set,
the
<command>scons-time</command>
script will
<emphasis>not</emphasis>
remove the temporary directory or directories
in which it builds the specified configuration
or downloads a specific version of SCons.</para>
<!-- '\"========================================================================== -->
</listitem>
</varlistentry>
</variablelist>
</refsect1>
<refsect1 id='see_also'><title>SEE ALSO</title>
<para><citerefentry><refentrytitle>gnuplot</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
<citerefentry><refentrytitle>scons</refentrytitle><manvolnum>1</manvolnum></citerefentry></para>
</refsect1>
<refsect1 id='authors'><title>AUTHORS</title>
<para>Steven Knight <knight at baldmt dot com></para>
</refsect1>
</refentry>
|