summaryrefslogtreecommitdiffstats
path: root/doc/user
Commit message (Collapse)AuthorAgeFilesLines
* Users Guide updates re: Tools as packages. Also updates UG xml files for my ↵Gary Oberbrunner2010-07-042-30/+56
| | | | previous patch. Closes issue 2642.
* Add all the per-system and per-user site_scons dirs, per discussion in SEP 002.Gary Oberbrunner2010-07-041-7/+19
|
* Issue 5062: XML fixes in the User's Guide. (Dirk Baechle)Steven Knight2010-06-2723-51/+54
|
* Fix misspelled entity (&Scons; => &SCons;).Steven Knight2010-06-172-2/+2
|
* Add Users Guide example of generating source code.Gary Oberbrunner2010-06-172-2/+123
|
* Minor User's Guide updates: copyright years, deprecated features, TODOs ↵Steven Knight2010-06-086-26/+14
| | | | that have been documented.
* Fix an AllowSubstExceptions() typo in the User's Guide update.Steven Knight2010-06-052-2/+2
|
* Issue 1975: Add documentation of the AllowSubstExceptions() functionSteven Knight2010-06-042-0/+153
| | | | to the User's Guide. (Jim Randall)
* Document FindPathDirs in Users GuideGary Oberbrunner2010-06-042-0/+98
|
* Document GetBuildPath in Users GuideGary Oberbrunner2010-06-032-0/+90
|
* Merged revisions 4832,4834-4836 via svnmerge fromWilliam Deegan2010-05-091-3/+3
| | | | | | | | | | | | | | | | | | | | | | http://scons.tigris.org/svn/scons/checkpoint/trunk ........ r4832 | bdbaddog | 2010-05-03 23:00:21 -0700 (Mon, 03 May 2010) | 3 lines Updated RELEASE.txt from Greg Noel ........ r4834 | bdbaddog | 2010-05-03 23:34:14 -0700 (Mon, 03 May 2010) | 3 lines Updates for 2.0.0.alpha.20100503 checkpoint release ........ r4835 | bdbaddog | 2010-05-08 14:27:43 -0700 (Sat, 08 May 2010) | 3 lines Change test to check for version 3.0 and expect failure, since we're now working on a 2.0 checkpoint. ........ r4836 | bdbaddog | 2010-05-08 14:31:58 -0700 (Sat, 08 May 2010) | 3 lines Update build date. Fix checkpoint build version string to remove the .dYYYYMMDD and change to .YYYYMMDD ........
* Restore </example> tags mistakenly deleted along with 1.5.2 code.Steven Knight2010-04-272-0/+6
|
* http://scons.tigris.org/issues/show_bug.cgi?id=2345Greg Noel2010-04-248-116/+10
| | | | | | | Comb out all code that supported earlier versions of Python. Most such code is in snippets of only a few lines and can be identified by having a Python version string in it. Such snippets add up; this combing pass probably got rid of over 500 lines of code.
* Fix XML in documentation, and in the bin/scons-doc.py script that generatesSteven Knight2010-04-0510-33/+33
| | | | the User's Guide XML from the .in files' SGML.
* http://scons.tigris.org/issues/show_bug.cgi?id=2329Greg Noel2010-03-274-37/+13
| | | | | | | | | | | | | | | Applied a number of idiomatic changes. Uses of the 'sort()' method were converted into calls of 'sorted()' when possible and the sorted() expression was inserted into a subsequent statement whenever that made sense. The statement 'while 1:' was changed to 'while True:'. Names from the 'types' module (e.g., 'types.FooType') were converted to the equivalent build-in type (e.g., 'foo'). Comparisons between types were changed to use 'isinstance()'.
* Move 2.0 changes collected in branches/pending back to trunk for furtherGreg Noel2010-03-254-8/+6
| | | | | development. Note that this set of changes is NOT backward-compatible; the trunk no longer works with Python 1.5.2, 2.0, or 2.1.
* rebuilt docsWilliam Deegan2010-01-1919-352/+1862
|
* Merge back from checkpoint.William Deegan2010-01-1919-1860/+350
| | | | Need to regenerate the .xml files.
* Fix timestamp-related Decider() examples by using Object() instead ofSteven Knight2010-01-162-18/+14
| | | | | | Program(), to avoid the downstream "hello" executable sometimes not getting re-linked if the example re-ran within a single second and didn't change the hello.o timestamp.
* Fix the Requires() examples by adding a sleep command to theSteven Knight2010-01-162-55/+67
| | | | | | | | infrastructure and using it to force the SConstruct file(s) to generate version.c files with new timestamps each run. Fix the description of the example, since the verson.o file does get recompiled each run, but the use of Requires() means the downstream hello executable doesn't get relinked because of it.
* Update a change of compilation order in the version.c examples.Steven Knight2010-01-161-1/+1
|
* Capture updated troubleshooting output.Steven Knight2010-01-141-18/+24
|
* Capture the previous output from "pkg-config x11" in a staticSteven Knight2010-01-132-0/+48
| | | | | screen section. Ubuntu Karmic changed the X11 package config so it no longer prints a -I option, and this is just an example anyway.
* Updates for changes to SCons error messages.Steven Knight2010-01-122-2/+2
|
* Propagate doc about site_scons to builders-writing.xml. Typographic edits.Steven Knight2010-01-112-119/+161
|
* Propagate typo fix to doc/user/separate.xml.Steven Knight2010-01-111-1/+1
|
* Fix doc bug #2502 (Ignore example was wrong)Gary Oberbrunner2010-01-112-4/+6
|
* XML file change to go with .in file changeWilliam Deegan2010-01-111-2/+2
|
* Fix bug 2389 - indicate that the install dir will depend on the python being ↵William Deegan2010-01-111-2/+2
| | | | used
* Use Glob() instead of glob.glob()Greg Noel2009-09-232-4/+2
|
* Fix typo I foundRobert Managan2009-06-221-1/+1
|
* Doc patch from issue 2282 (mention JAVAVERSION in users guide), thanks to ↵Gary Oberbrunner2009-05-292-0/+40
| | | | Knut Arild Erstad.
* Issue 2349: doc-only change correcting description of text returned from ↵Greg Noel2009-04-102-6/+6
| | | | sconf.Result() call
* User's Guide updates: fix typos, clarify various things. (Robert P. J. Day)Steven Knight2009-01-299-46/+114
|
* User's Guide updates. (Robert P. J. Day)Steven Knight2009-01-286-18/+42
|
* Fix an undefined entity reference.Steven Knight2009-01-132-2/+2
|
* Fix typos in the User's Guide. (Zia Sobhani)Steven Knight2009-01-1210-18/+19
|
* Issue 1086: add support for generic batch build actions, andSteven Knight2009-01-093-147/+510
| | | | | | | | | | | | | | | | | | | | | | specific support for batched compilation for Microsoft Visual C/C++. Merged revisions 3819-3851,3854-3869,3871-3877,3880 via svnmerge from http://scons.tigris.org/svn/scons/branches/sgk_batch ........ r3820 | stevenknight | 2008-12-09 23:59:14 -0800 (Tue, 09 Dec 2008) | 6 lines Issue 1086: Batch compilation support: * $MSVC_BATCH to control Visual C/C++ batch compilation. * New $CHANGED_SOURCES, $CHANGED_TARGETS, $UNCHANGED_SOURCES and $UNCHANGED_TARGETS construction variables. * New Action(batch_key=, targets=) keyword arguments. ........ r3880 | stevenknight | 2009-01-07 20:50:41 -0800 (Wed, 07 Jan 2009) | 3 lines Use UniqueList objects to collect the all_children(), all_prerequisites() and all_sources() lists instead of calling uniquer_hashables() by hand. ........
* Merged revisions 3611-3763,3765-3794,3796-3811,3813-3839,3841-3847 via ↵Steven Knight2008-12-213-10/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svnmerge from http://scons.tigris.org/svn/scons/checkpoint ................ r3765 | stevenknight | 2008-11-04 07:57:03 -0800 (Tue, 04 Nov 2008) | 2 lines Update release info for checkpoint. ................ r3796 | stevenknight | 2008-11-25 21:56:26 -0800 (Tue, 25 Nov 2008) | 2 lines Updates for 20081125 checkpoint release. ................ r3797 | stevenknight | 2008-11-26 08:21:04 -0800 (Wed, 26 Nov 2008) | 2 lines User's Guide updates for changes to error messages. ................ r3813 | stevenknight | 2008-12-07 19:13:17 -0800 (Sun, 07 Dec 2008) | 2 lines Update lines for the 20081207 checkpoint release (candidate for 1.2.0). ................ r3814 | stevenknight | 2008-12-07 19:35:09 -0800 (Sun, 07 Dec 2008) | 2 lines Update troubleshoot.xml for the changes to taskmastertrace output. ................ r3847 | stevenknight | 2008-12-21 07:57:50 -0800 (Sun, 21 Dec 2008) | 9 lines Merged revisions 3610-3840,3842-3846 via svnmerge from http://scons.tigris.org/svn/scons/release ........ r3842 | stevenknight | 2008-12-20 22:48:14 -0800 (Sat, 20 Dec 2008) | 2 lines Update files for 1.2.0. ........ ................
* Issue 2255: Handle scanning of UTF-8 and UTF-16 files. (Greg Spencer)Steven Knight2008-12-122-6/+6
|
* Update Users Guide to clarify usage of site_scons and site_init.py.Gary Oberbrunner2008-11-193-3/+50
|
* User's Guide updates:Steven Knight2008-10-0311-37/+37
| | | | | | Mostly MSVC compilation lines so the /Fo is at the beginning of the output line. Also some new/modified variables in the environment dump in the Troubleshooting appendix, and removing a leftover XXX todo comment.
* Add Users Guide example of using $SOURCE substitution in a target name in a ↵Gary Oberbrunner2008-10-022-0/+44
| | | | Command builder. Just doc.
* Fix error reported on IRCGreg Noel2008-09-162-2/+2
|
* Issue 1978: put the FindFile section in the Miscellaneous chapter.Steven Knight2008-09-063-204/+349
|
* Initial User Guide documentation for FindFile. Not integratedGreg Noel2008-08-271-0/+204
| | | | into Guide itself yet.
* Issue 2099: have Execute() print an error message if an actionSteven Knight2008-08-262-4/+48
| | | | | fails. Better document the behavior of returning the exit status, and that exit-on-failure is the SConscript writer's responsibility.
* Issue 1982: document GetLaunchDir() in the User's Guide.Steven Knight2008-08-252-0/+92
|
* Fix for bug #243 - document how to use Ignore() to remove a target fromWilliam Deegan2008-08-242-1/+55
| | | | being built as default.
* Issue 1984: Documentation for ParseDependsLudwig Hähne2008-08-222-1/+317
|