summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/MSCommon/vc.py
Commit message (Collapse)AuthorAgeFilesLines
* When iterating over dict.items(), we do not need a new list.Craig Rodrigues2017-03-121-1/+1
|
* fix PCHPDBFLAGS changes to not crash if version of MSVC is unknown, and ↵William Deegan2016-11-271-5/+6
| | | | default to old value
* Futurize stage 2 2to3 fixes only.William Blevins2016-09-201-1/+1
|
* Post merge commit for safety. Building Fortran code works, but tests fail.Russel Winder2015-12-241-40/+64
|\
| * removed several pre-2.7 methods and imports, including some basic refactoringsDirk Baechle2015-12-101-2/+2
| |
| * Merged in hhsprings/scons (pull request #222)William Deegan2015-10-021-35/+57
| |\
| | * This patch is not for Python 2.7, but for `Microsoft Visual C++ Compilerhhsprings2015-03-131-31/+53
| | | | | | | | | | | | | | | | | | for Python 2.7'. Althouh maintainers claims `This will be the last release to support Python versions earlier than 2.7, as we begin to move toward supporting Python 3.`, that’s not the same as supporting compiler.
| * | Add Visual Studio 2015 support to SConsRob Smith2015-07-141-1/+5
| |/
* | Merged default branch into python3-port to keep it up to date.Gary Oberbrunner2014-08-231-20/+33
|\ \ | |/ | | | | | | Hand-updated a few things to keep them python3-safe, and handled several merge conflicts.
| * Merged in Syeberman/scons/msvs-vcvars-caching (pull request #105)Gary Oberbrunner2014-04-191-2/+15
| |\ | | | | | | | | | Add caching to MSCommon.script_env
| | * Update comments to clarify benefits of script_env memoizationSye van der Veen2014-03-161-3/+6
| | |
| | * Add caching to MSCommon.script_env for builds that initialize the same ↵Sye van der Veen2014-01-301-2/+12
| | | | | | | | | | | | MSVS/MSVC tool multiple times (in multiple environments, perhaps)
* | | Merged with [default]Stefan Zimmermann2014-03-311-1/+8
|\ \ \ | |/ /
| * | Adding support for Visual Studio 2013Shane Gannon2014-03-111-2/+3
| | |
| * | Fixed an error when trying to cross-compile from x86 to amd64 in MSVS: ↵Sye van der Veen2014-01-301-0/+1
| | | | | | | | | | | | missing entry in the _HOST_TARGET_ARCH_TO_BAT_ARCH dict
| * | Updated msvs/msvc settings for Express (for Desktop) versions of Visual ↵Sye van der Veen2014-01-231-1/+6
| |/ | | | | | | Studio from 2008-2013
* | Merged with [default]Stefan Zimmermann2014-03-311-8/+9
|\ \ | |/
| * fix missing file testantonio2013-06-151-7/+7
| | | | | | | | (transplanted from 19a5828d1523a8308cf652d18eb1824e85d1c304)
| * fix for visual studio expres on win7 x86_64antonio2013-06-151-5/+6
| | | | | | | | (transplanted from d7e892b4978439c6374d090912f13afa13e8daf8)
* | Made former 2to3 changes Python 2.7 compatible (or removed unneeded changes).Stefan Zimmermann2014-03-311-1/+1
| |
* | Result of raw 2to3 run (2to3-2.7); checkpoint for python3 conversion.Gary Oberbrunner2013-09-221-12/+12
|/
* should resolve issues with VS2012 (and probably VS2010) on 64(and probably ↵William Deegan2013-04-111-4/+20
| | | | 32)bit win. Addressing at least bugs 2883 and 2817
* Fix typo introduced during recent change to vc.pyGary Oberbrunner2012-08-051-1/+1
|
* Forgot the req_Steven Verbeek2012-07-181-1/+1
|
* Changed to proper methodSteven Verbeek2012-07-181-1/+1
|
* Fixes an issue with 64 bit Windows 7 running 32 bit Visual Express C++ 2010Steven Verbeek2012-07-051-1/+1
| | | | bug: http://scons.tigris.org/issues/show_bug.cgi?id=2849
* MSVC: show valid $TARGET_ARCH values when invalid arch passed in.Gary Oberbrunner2012-05-071-1/+2
|
* start of msvc11 supportstopiccot2012-03-021-3/+7
|
* Fix bug 2722 - get rid of warnings about missing MSVC, now will only be ↵William Deegan2011-05-171-4/+7
| | | | shown if the SCONS_MSCOMMON_DEBUG environment variable is set. Also partial fix for 2661.src/engine/SCons/Tool/MSCommon/vc.py
* Architecture canonicalization fixes:Steven Knight2010-06-071-9/+12
| | | | | | | * Lower-case the *_platform values to handle Pythons that return upper-case values like 'AMD64'. * Add "i[456]86" entries to the canonicalization dictionary. * Sort and reformat the dictionary for readability.
* Initial Migration of MSVC logic from 1.3 branch.William Deegan2010-06-031-56/+99
|
* http://scons.tigris.org/issues/show_bug.cgi?id=2345Greg Noel2010-04-151-3/+1
| | | | | | Apply the first part of the 'raise' fixer (the three-argument cases are not converted and will need to wait until native support of with_traceback() is available).
* Fix vc9.0 express issue, misspelling, and add testcase which would have ↵William Deegan2010-04-061-1/+3
| | | | exposed the issue.
* Revert revision 4742. How hard is it to understand "No bugfixes in 2.0"?Greg Noel2010-03-311-4/+1
| | | | This fix should be in 2.0.1, which will mirror the changes in 1.3.1.
* Fix exception thrown when VC9.0Exp is used.William Deegan2010-03-311-1/+4
|
* http://scons.tigris.org/issues/show_bug.cgi?id=2345Greg Noel2010-03-291-2/+2
| | | | | | | Accumulated small fixers: renames, next, zip, and intern. Files that were modified or added while developing on branches/pending didn't have the fixers previously applied. This patchset picks up those.
* Prevent "Exp" in MSVC version name from causing problems.Gary Oberbrunner2010-03-191-1/+4
|
* Fix for MSSDK initialiationWilliam Deegan2010-03-191-3/+5
| | | | | | | For the user in question who had VS 8.0 express installed, the vc version was being set to 8.0, and the the vs version was being set to the same, which was then being used to detect the vs version by an expected binary. Since it though it had VS 8.0, the binary was the not there for VS8.0 Express, so it was bailing out on the initialization. The fix is to have a VC8.0Exp as well as VC8.0 (also for VS9.0Exp).
* Add more debug output to Visual Studio/VC/ SDK initializationWilliam Deegan2010-03-151-0/+2
|
* Mainly patch from James TehWilliam Deegan2010-02-101-4/+10
| | | | + lots of additional debug output
* 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-041-11/+33
| | | | | | | | | | | | | 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 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
|
* Fix check for too-old Visual Studio with non-x86 arch; thanks to Roberto De ↵Gary Oberbrunner2009-11-241-1/+1
| | | | Vecchi.