summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo in man page, per patch in issue #2529.Gary Oberbrunner2009-12-061-1/+1
|
* Integrate patch from issue #2436: fix regression from r3691 which stopped ↵Gary Oberbrunner2009-12-052-16/+21
| | | | printing "Entering Directory" with -C/-u.
* Explicitly initialize the environment tools=['mssdk', 'msvc', 'mslink']Steven Knight2009-11-302-2/+6
| | | | | to get the path to the SDK include directory (so our test program can #include <windows.h>).
* Fix c++ compiler detection: correct the order of values returned,Steven Knight2009-11-291-4/+4
| | | | return the dirname of the executables found, not the full path.
* Add missing "import string" to test that uses string.replace().Steven Knight2009-11-291-0/+2
|
* Fix get_host_target()'s use of platform.machine() on Python versionsSteven Knight2009-11-281-1/+7
| | | | before 2.6, when it always returns a null string.
* Don't hard-code the swig location in the expected output.Steven Knight2009-11-281-11/+7
| | | | Use test.wrap_stdout() instead of hard-coding the SCons messages.
* Remove the obsolete msvs_exists() unit test.Steven Knight2009-11-281-5/+0
|
* Fix test infrastructure querying for installed Visual Studio versions.Steven Knight2009-11-281-2/+2
|
* Add a compat module for the (Python 2.3) platform.py module so that testsSteven Knight2009-11-273-0/+246
| | | | | | using early Python versions work correctly, and without relying on the QMTest infrastructure adding the installed Python version's directories to sys.path.
* Add __COPYRIGHT__ strings.Steven Knight2009-11-273-0/+10
|
* Fix wrong var name in r4486, thanks Greg!Gary Oberbrunner2009-11-261-2/+2
|
* Use VisualCMissingWarning instead of making a stack trace for unsupported ↵Gary Oberbrunner2009-11-261-3/+3
| | | | MSVC version.
* Python 1.5 fix: no +=Steven Knight2009-11-261-3/+4
|
* Add a test for the case where a latex file uses \input{} to include theRobert Managan2009-11-253-9/+181
| | | | | | | | | | file that contains the documentclass command Add logic to is_LaTeX routine to search through included files until \documentclass is found Also added comments, converted comments at start of 2 routines into doc strings..
* Another test fix for the MSVS tests.Gary Oberbrunner2009-11-251-0/+4
|
* A couple more test fixes, to make test/import.py work on Linux.Gary Oberbrunner2009-11-252-4/+9
|
* Fix tests to ignore missing MSVC warnings.Gary Oberbrunner2009-11-252-5/+25
|
* Doc tweaks for MSVC_VERSION and TARGET_ARCH.Gary Oberbrunner2009-11-242-12/+19
|
* Rename the TimeSCons.run_build() method to just TimeSCons.run() soSteven Knight2009-11-241-6/+8
| | | | | | | the parent class TestSCons.up_to_date() method will use it to print the --debug=memory and --debug=times stats during up-to-date runs. Fix the TestSCons.up_to_date() regular expression so the memory and timing output won't cause the check to fail.
* Fix check for too-old Visual Studio with non-x86 arch; thanks to Roberto De ↵Gary Oberbrunner2009-11-241-1/+1
| | | | Vecchi.
* Fix incorrectly inverted condition in test for non-TimeSCons entries.Steven Knight2009-11-241-3/+3
|
* ENH: explicit check for supported arch per version when using batch file.David Cournapeau2009-11-231-0/+43
|
* REF: query host/target arch only when using bat file.David Cournapeau2009-11-231-2/+1
|
* Python 1.5 compat: if 'text' in kw.keys()Steven Knight2009-11-231-1/+3
|
* Python 1.5 fixes in the TimeSCons class.Steven Knight2009-11-221-10/+30
|
* Faster backward-compatible codeGreg Noel2009-11-201-2/+1
|
* Capture initial infrastructure for working performance tests.Steven Knight2009-11-1910-136/+225
|
* ENH: add a cache for get_installed_vcs, as it used for every MS tool exists ↵David Cournapeau2009-11-191-3/+13
| | | | function and is expensive.
* BUG: fix caching bug for msvc_setup_once.David Cournapeau2009-11-191-1/+1
|
* DOC: add doc for TARGET_ARCH/HOST_ARCH + obsolete MSVS_VERSION.David Cournapeau2009-11-192-0/+25
|
* REF: remove duplicated function msvc_setup_env_once.David Cournapeau2009-11-191-10/+0
|
* BUG: fix MSVC_USE_SCRIPT=False case.David Cournapeau2009-11-191-2/+5
|
* BUG: return early with warning if no version of vc is found.David Cournapeau2009-11-191-0/+6
|
* BUG: catch any VisualCException when querying available versions through ↵David Cournapeau2009-11-191-4/+14
| | | | find_vc_pdir.
* ENH: add support for Itanium architecture.David Cournapeau2009-11-191-2/+5
|
* ENH: use Gary error checking, but using exception instead of returning error ↵David Cournapeau2009-11-192-17/+28
| | | | message (thanks Gary).
* ENH: set up MSVS_VERSION and MSVS dict while setting up msvc as well.David Cournapeau2009-11-191-0/+5
|
* BUG: catch error while canonalizing arch for host/target.David Cournapeau2009-11-191-2/+11
|
* ENH: use msvc_exists for all tools in the Visual Studio toolchain.David Cournapeau2009-11-194-9/+9
|
* ENH: handle MSVS_VERSION additionally to MSVC_VERSION, but raise deprecation ↵David Cournapeau2009-11-193-0/+22
| | | | warnings if used.
* REF: move vc2 to vc module.David Cournapeau2009-11-194-541/+541
|
* ENH: use a pre-sorted list for MSVC versions to check.David Cournapeau2009-11-191-3/+5
|
* DOC: add a TODO for updated vc support.David Cournapeau2009-11-191-0/+9
|
* ENH: raise an exception when we detect an error while executing the batch file.David Cournapeau2009-11-191-1/+19
|
* BUG: fix get_installed_vcs such as most recent versions are the first ones.David Cournapeau2009-11-191-1/+2
|
* BUG: do not set up the SDK for now - it messes up cross compilation.David Cournapeau2009-11-192-4/+1
|
* ENH: start a new, simpler and more robust vc module.David Cournapeau2009-11-192-1/+222
|
* BUG: fix cross-compilation from x86 -> x86_64 for VS 2008.David Cournapeau2009-11-191-8/+23
|
* BUG: do not call msvs bat file in merge_default_version, only set up version.David Cournapeau2009-11-191-1/+2
|