summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/MSCommon
Commit message (Collapse)AuthorAgeFilesLines
...
* Add more debug output to Visual Studio/VC/ SDK initializationWilliam Deegan2010-03-152-0/+5
|
* Mainly patch from James TehWilliam Deegan2010-02-102-11/+23
| | | | + lots of additional debug output
* MS win32 sdk issue, fixed requested arch to not request cross compile when ↵William Deegan2010-02-091-6/+14
| | | | building 32 bit on 64 bit host.
* Fix the case where neither vc nor sdk script exist or, vc doesn't work and ↵William Deegan2010-02-071-1/+1
| | | | sdk doesn't exist.
* Gracefully handle not finding the VC and/or SDK setup batch scripts.William Deegan2010-02-051-7/+15
|
* It should now handle picking up the SDK compilers when the VC vcvarsall.bat ↵William Deegan2010-02-042-13/+81
| | | | | | | | | | | | | doesn't pick them. Perhaps not for all flavors of the SDK, but for SDK 7.0. Currently the following tests fail: Failed the following 2 tests: test\IDL\midl.py test\Win32\scons-bat-error.py We should add to the docs which combinations of VC and SDK we expect to work, and which have been tested.
* Fix #2515: use better way to detect 64-bit OS.Gary Oberbrunner2010-01-111-4/+19
|
* 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.
* Add a compat module for the (Python 2.3) platform.py module so that testsSteven Knight2009-11-271-0/+1
| | | | | | using early Python versions work correctly, and without relying on the QMTest infrastructure adding the installed Python version's directories to sys.path.
* 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
|
* 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-251-3/+3
|
* Fix check for too-old Visual Studio with non-x86 arch; thanks to Roberto De ↵Gary Oberbrunner2009-11-241-1/+1
| | | | Vecchi.
* 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
|
* 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
|
* 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-191-17/+27
| | | | 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: handle MSVS_VERSION additionally to MSVC_VERSION, but raise deprecation ↵David Cournapeau2009-11-191-0/+16
| | | | 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-191-1/+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
|
* ENH: use msvc env, not msvs to set up mslib and mslink paths.David Cournapeau2009-11-191-1/+2
|
* ENH: add a wrapper around msvc_setup_env to guarantee the function is called ↵David Cournapeau2009-11-191-0/+10
| | | | only once.
* BUG: fix arch argument to pass to batfile.David Cournapeau2009-11-191-2/+3
|
* ENH: move user info gathering at the top of msvc_setup_env.David Cournapeau2009-11-191-2/+2
|
* ENH: factor host/target handling in separate function.David Cournapeau2009-11-191-6/+10
|
* ENH: bypass complicated VisualC logic, and use the .bat file to get correct ↵David Cournapeau2009-11-191-3/+10
| | | | arch settings instead.
* ENH: script_env now takes an args argument to forward arguments to the ↵David Cournapeau2009-11-191-2/+2
| | | | executed script.
* ENH: refactor function to get msvc version.David Cournapeau2009-11-191-14/+22
|
* MSVC: Add correct x86_64/x66_64 msvc bat file location for VC 9.0 (2008).Gary Oberbrunner2009-10-141-0/+1
|
* Fix win64 detection.David Cournapeau2009-09-091-6/+13
|
* Check that MSVC install dir returned by registry actually exists before ↵Gary Oberbrunner2009-08-051-1/+9
| | | | using it. Also added some debug stmts to vc.py.
* Fix MSVC 7.1 IDE path (for MSVS detection code) in Tool/MSCommon/vs.py.Gary Oberbrunner2009-08-041-2/+2
|
* Fix formatting of a debug message that was preventing normal execution.Steven Knight2009-07-221-1/+1
|