summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Node/FS.py
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove unnecessary creation of RCS and SCCS Node.Dir nodes.Steven Knight2006-03-051-4/+16
|
* Refactor so Command() uses an FS.Entry as its target factory.Steven Knight2006-02-121-40/+27
|
* Refactor NodeInfo and BuildInfo handling to prepare for signature refactoring.Steven Knight2006-01-221-11/+24
|
* Refactor NodeInfo decisions in anticipation of bigger refctoring.Steven Knight2006-01-211-7/+15
|
* More efficient Node.FS.Dir.current() check. Fix some Windows test ↵Steven Knight2006-01-211-11/+6
| | | | portability issues.
* Deprecate $WIN32 variables name in place of $WINDOWS* variables names, and ↵Steven Knight2006-01-211-7/+10
| | | | eliminate other Win32 references.
* Handle scanning of the in-memory entries for a Dir with a scanner, not a ↵Steven Knight2005-12-271-15/+7
| | | | hard-coded Python method.
* Checkpoint minor refactorings en route to signature refactoring.Steven Knight2005-12-161-4/+22
|
* Handle interpretation of Node.FS objects when wrapped in Proxy instances. ↵Steven Knight2005-12-011-0/+8
| | | | (Erling Andersen)
* Support specifying absolute path names without drive letters on Win32.Steven Knight2005-11-191-1/+15
|
* Bring CVS back in sync.Steven Knight2005-11-171-394/+530
|
* When searching paths for Files or Dirs, match Entries,too.Steven Knight2005-11-161-393/+452
|
* Allow explicit target_factory=Dir with Builders that make a directory to ↵Steven Knight2005-11-151-822/+627
| | | | override the default, implicit make-a-directory Builder..
* Fix on-disk file matching on case-insensitive systems. Various fixes for ↵Steven Knight2005-10-101-2/+2
| | | | win32 portability. Refactor the --debug=time test. Refactor the Perforce test. Additional cleanup.
* Remove old, same-named files from a build directory if the file in the ↵Steven Knight2005-10-081-3/+15
| | | | source directory does not exist. (Patrick Mezard)
* Fix a bug in the signature refactoring that caused some generated .h files ↵Steven Knight2005-09-251-5/+2
| | | | to always get rebuilt.
* More efficient checking for on-disk file entries.Steven Knight2005-09-251-13/+27
|
* Give the subst logic its own SCons.Subst module. It's big enough.Steven Knight2005-09-191-7/+8
|
* Handle IOError exceptions when pushing files to CacheDir (and elsewhere).Steven Knight2005-08-201-5/+13
|
* Have Visual Studio echo that we're using SCons to build things, to work ↵Steven Knight2005-08-201-1/+2
| | | | around a quoting issue. (Shannon Mann)
* Add a Dirs() function that can be used in hBcexpansions. (Stanislav Baranov)Steven Knight2005-08-131-0/+5
|
* Win32 portability.Steven Knight2005-08-071-1/+1
|
* Move max_drift from Sig/MD5.py to Node/FS.py.Steven Knight2005-07-041-3/+13
|
* Gary's bug.Steven Knight2005-06-111-7/+9
|
* Add a --diskcheck option to control looking on-disk for things.Steven Knight2005-06-101-31/+85
|
* Split Node-specific stuff from BuildInfo into a separate NodeInfo class. ↵Steven Knight2005-06-071-64/+83
| | | | Add size info to the File information we collect.
* Move BuildInfo translation of signature Nodes to rel_paths into the class ↵Steven Knight2005-06-041-7/+46
| | | | itself.
* Add a --debug=nomemoizer option to disable memoization.Steven Knight2005-06-011-2/+3
|
* Fix lookups of same-named files.Steven Knight2005-05-291-2/+2
|
* Get rid of the requirement that a source directory must be under the ↵Steven Knight2005-05-151-2/+0
| | | | SConstruct directory.
* Move pre- and post-actions lists from Node to Executor so expansions of ↵Steven Knight2005-05-141-1/+6
| | | | ${TARGETS[1:]} work, and the actions aren't executed multiple times.
* Eliminate multiple calls to os.stat() to fetch file info.Steven Knight2005-05-131-15/+38
|
* Make SConsignFile() behavior the default.Steven Knight2005-05-071-0/+14
|
* Win32 portability for recent RootDir and rel_path() changes.Steven Knight2005-04-261-0/+3
|
* Cache the result from rel_path().Steven Knight2005-04-181-1/+2
|
* Avoid must_be_a_Dir() attribute errors when trying to look up path names ↵Steven Knight2005-04-151-57/+34
| | | | above the root directory in a file system (and speed things up a little bit), by making our RootDir class behave more like a real file system inode and getting rid of the ParentOfRoot class altogether.
* Refactor the Rsearch*() methods out of existence in favor of simpler utility ↵Steven Knight2005-04-131-145/+71
| | | | methods that return lists of repository directories.
* Remove widespread reliance on SCons.Node.FS.default_fs so we can initialize ↵Steven Knight2005-04-021-25/+12
| | | | it once (later than we used to) and eliminate all the __setTopLevelDir() calls.
* Store source file and dependency paths relative to the target's directory, ↵Steven Knight2005-04-011-16/+43
| | | | not relative to the top-level SConstruct directory.
* Refactor _doLookup() to speed it up a little.Steven Knight2005-03-241-27/+39
|
* When searching paths for Files or Dirs, match Entries,too.Steven Knight2005-03-201-3/+4
|
* Speed up string expansion. Cache find_file() results in the Memoizer.Steven Knight2005-03-081-0/+1
|
* Fix a regression in handling CPPPATH='.' when using a BuildDir with ↵Steven Knight2005-03-051-4/+0
| | | | subdirectories in the search path.
* Eliminate find_file() inefficiency.Steven Knight2005-03-051-37/+48
|
* Checkpoint refactoring of the find_file() interface.Steven Knight2005-03-011-39/+34
|
* Group --debug=count output by object modules.Steven Knight2005-03-011-1/+1
|
* Don't throw a 'Tried to lookup a File as a Dir' exception if there's a ↵Steven Knight2005-03-011-1/+8
| | | | same-named file as a directory we might try to search for an included file.
* Fix creating a build_dir from scratch when there's a subsidiary SConscript() ↵Steven Knight2005-02-161-27/+31
| | | | file.
* When searching for files, don't pick same-named directories in a search path.Steven Knight2005-02-151-3/+2
|
* Don't read up entire directories to decide if an Alias is up-to-date.Steven Knight2005-02-141-34/+47
|