summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | added SDK 7.1 and 7.0A logic. Needs to be tested on systems with 7.0A ↵William Deegan2015-02-181-2/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | installed. Also fixed some error messages when not finding requested SDK's. Previously would throw an exception
* | | | | | | fix test/site_scons/override.py which was failing only on Win32. loading the ↵William Deegan2015-02-171-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | m4 tool was excluded in src/engine/SCons/Tool/__init__.py in tool_list(). So I've explicitly created the Environment() loading only the m4 tool. This test is checking to see if a tool in site_scons/site_tools would override the default logic.
* | | | | | | Change to use function to determine if it'sa windows platform. checking for ↵bdbaddog2015-02-161-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | win32 was insufficient on 64 bit windows which distutils sets the platform to win-amd64
* | | | | | | monkey patch the get_build_version() function in distutils msvccompiler.py ↵William Deegan2015-02-151-0/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | because if it's being run on a non-windows platform it always defaults to use msvc version 6, which doesn't provide a 64 bit installer boilerplate. Switching to 9 should work with python 2.7.x
* | | | | | | Always build 32 and 64 bit versions of the windows installer. No reason to ↵William Deegan2015-02-151-9/+12
|/ / / / / / | | | | | | | | | | | | | | | | | | only build the native version since python can build both regardless of currrent platform
* | | | | | SConstruct: Compress SCons .zip archivesanatoly techtonik2015-02-031-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | See https://pairlist2.pair.net/pipermail/scons-dev/2015-January/002151.html
* | | | | | Merged in klimkin/scons (pull request #205)dirkbaechle2015-02-022-11/+49
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Fix incomplete LIBS flattening and substitution in Program scanner
| * | | | | | Add comment for a case where LIBS (or part of it) is an objectAlexey Klimkin2015-01-271-0/+1
| | | | | | |
| * | | | | | Improve readability of LIB substitution codeAlexey Klimkin2015-01-202-16/+17
| | | | | | |
| * | | | | | Fix incomplete LIBS flattening and substitution in Program scannerAlexey Klimkin2015-01-142-3/+39
| |/ / / / /
* | | | | | - providing MAN page stubs when not all doc packages for the packaging ↵Dirk Baechle2015-01-184-6/+44
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | process are installed - fixed refmiscinfo for MAN pages
* | | | | | doc/SConscript: Fix build crash when XML toolchain is not installedanatoly techtonik2015-01-111-26/+29
| | | | | | | | | | | | | | | | | | | | | | | | by intercepting previously added ImportError from SConsDoc
* | | | | | SConsDoc.py: Calling sys.exit(-1) in imported library is bad, becauseanatoly techtonik2015-01-111-4/+2
|/ / / / / | | | | | | | | | | | | | | | it removes the trace who and when imported it.
* | | | | Merged in dirkbaechle/scons (pull request #193), new method ↵Dirk Baechle2015-01-112-0/+59
|\ \ \ \ \ | | | | | | | | | | | | | | | | | | rentry_exists_on_disk
| * | | | | - added new method rentry_exists_on_disk (check for physical files/dirs)Dirk Baechle2014-11-052-0/+59
| | | | | |
* | | | | | Merged in russel/scons (pull request #203), update Fortran tooling to ↵Dirk Baechle2015-01-1016-37/+1553
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | support .f08 file extensions"
| * | | | | | Update Fortran tooling to support .f08 file extensions.Russel Winder2015-01-0712-1/+1215
| | | | | | |
* | | | | | | Update CHANGES.txt for --config improvementanatoly techtonik2014-12-291-0/+3
| | | | | | |
* | | | | | | Improve invalid --config value handling for multiple choices:anatoly techtonik2014-12-281-8/+8
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changes output of `scons --config` from: usage: scons [OPTION] [TARGET] ... SCons Error: --config option requires an argument To: usage: scons [OPTION] [TARGET] ... SCons Error: --config option requires an argument (choose from auto, force, cache)
* | | | | | Check for the header file itself on not an associated executable.Russel Winder2014-12-231-1/+1
| | | | | |
* | | | | | Cover all cases of badly named LDC phobos library, not just 64-bit.Russel Winder2014-12-221-1/+1
| | | | | |
* | | | | | Remove excess blank lines.Russel Winder2014-12-221-2/+0
| | | | | |
* | | | | | Replace UNIX specific code with cross-platform code.Russel Winder2014-12-221-2/+2
| | | | | |
* | | | | | Putative fix for the CI problem perceived to be due to 32-bit platform.Russel Winder2014-12-221-0/+4
| | | | | |
* | | | | | Putative solution to lakc of ncurses on one of the CI machines.Russel Winder2014-12-221-1/+4
| | | | | |
* | | | | | Putative hack for the Fedora library misnaming.Russel Winder2014-12-211-0/+3
| | | | | |
* | | | | | Hack the tests (in an agreed quasi-acceptable way) to avoid CI fails.Russel Winder2014-12-2111-1/+26
| | | | | |
* | | | | | Correct a spelling error, should fix one of the test fails.Russel Winder2014-12-211-1/+1
| | | | | |
* | | | | | Merged in dirkbaechle/scons (pull request #189)dirkbaechle2014-12-211-17/+38
|\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | Fix for Interactive/configure test (fails under Windows currently)
| * | | | | | - fix: made the test for Interactive/configure self-contained, such that it ↵Dirk Baechle2014-09-281-17/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | works on any platform
* | | | | | | - fixed typo, which would use the wrong attributeDirk Baechle2014-12-201-12/+3
| | | | | | |
* | | | | | | - switching versioned shared libs to using Node.attributesDirk Baechle2014-12-193-18/+53
| | | | | | |
* | | | | | | TempFileMunge does not use env['CXXCOMSTR'] for output display.LaurentMarchelli2014-12-026-14/+19
| | | | | | |
* | | | | | | Using setattr(Node.attributes, 'tempfile_cmdlist', cmdlist) instead than ↵LaurentMarchelli2014-11-272-14/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | setattr(TList, 'tempfile_cmdlist', cmdlist)
* | | | | | | TempFileMunge duplicate output and duplicate temporary file generation bug ↵LaurentMarchelli2014-11-262-1/+43
| | | | | | | | | | | | | | | | | | | | | | | | | | | | fixed.
* | | | | | | - added latest contributors to CHANGES.txtDirk Baechle2014-11-141-0/+6
| | | | | | |
* | | | | | | also set soname on sunosAlexandre Feblot2014-11-121-0/+5
| | | | | | |
* | | | | | | merge from mainlaineAlexandre Feblot2014-11-1216-37/+279
|\ \ \ \ \ \ \
| * | | | | | | Unary tests ready for review.MorpheusDev2014-11-071-0/+79
| | | | | | | |
| * | | | | | | Dumb error fixed.Laurent Marchelli2014-11-051-1/+1
| | | | | | | |
| * | | | | | | Multiple 'cmdargs' feature added to allow a per variant cmdargs, to be able ↵MorpheusDev2014-10-271-4/+12
| | |/ / / / / | |/| | | | | | | | | | | | | | | | | | | to insert different parameters between Debug and Release.
| * | | | | | updated CHANGES.txtDirk Baechle2014-10-221-0/+3
| | | | | | |
| * | | | | | Issue 2978: remove debug lineDan Pidcock2014-10-201-1/+0
| | | | | | |
| * | | | | | Issue 2978: Update tests for toolset support in VS project filesDan Pidcock2014-10-151-0/+2
| | | | | | |
| * | | | | | Support toolset in VS project files so that displayed version of visual ↵Dan Pidcock2014-10-151-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | studio matches the one that will be used
| * | | | | | Merged in jamessan/scons (pull request #184), support for -isystem in ParseFlagsDirk Baechle2014-10-013-7/+14
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| | * | | | | Support -isystem in ParseFlagsJames McCoy2014-09-152-3/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The -isystem flag specifies an include directory that is afforded the same special treatment (e.g., suppression of warnings) as the typical system include directories.
| * | | | | | Put default branch back to develop mode, post 2.3.4.Gary Oberbrunner2014-09-276-19/+80
| | | | | | |
| * | | | | | Update CHANGES, Release and Announce prior to 2.3.4 release.Gary Oberbrunner2014-09-273-61/+14
| | | | | | |
| * | | | | | Release fixes: README.rst python version, and some auto version numbering.Gary Oberbrunner2014-09-272-13/+18
| | | | | | |