Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix bad syntax in module not currently used | William Deegan | 2017-11-14 | 1 | -0/+1 |
| | |||||
* | Fix messaging when two environments are specified for same target to handle ↵ | William Deegan | 2017-11-14 | 1 | -1/+4 |
| | | | | when the action cannot be decoded as UTF-8. This most likely only happens when the action is a python function. It was breaking (at least) some example output generated for documentation | ||||
* | switched the order of target/source checking so no target is an option, also ↵ | Daniel Moody | 2017-11-14 | 1 | -10/+10 |
| | | | | fixed Warning module mispelling. | ||||
* | Added a way to handle multiple targets for the Jar builder and an extra ↵ | Daniel Moody | 2017-11-14 | 1 | -5/+13 |
| | | | | warning message. | ||||
* | added a method to the jar tool to handle directories and file sources. This ↵ | Daniel Moody | 2017-10-26 | 2 | -2/+119 |
| | | | | was taken from the similar Java method in the javac tool. Updated the Jar builder to have an unambiguos name. | ||||
* | Merge pull request #9 from ztessler/repeattarget | William Deegan | 2017-10-22 | 1 | -1/+8 |
|\ | | | | | Fix incorrect warning of different environments | ||||
| * | Fix incorrect warning of different environments for a target when repeating ↵ | Zachary Tessler | 2017-10-06 | 1 | -1/+8 |
| | | | | | | | | identical builder or Command calls that use overrides | ||||
* | | Add printing time processing each SConscript when --debug=time is specified ↵ | William Deegan | 2017-10-20 | 1 | -0/+9 |
| | | | | | | | | on command line | ||||
* | | Fix issue with Tool loading logic where sys.path was getting an addition ↵ | William Deegan | 2017-10-13 | 1 | -2/+8 |
| | | | | | | | | site_scons/site_tools path prepended with every tool loaded when running with Python 3.5+. | ||||
* | | Merge branch 'master' of https://github.com/dmoody256/scons into ↵ | William Deegan | 2017-10-12 | 1 | -2/+0 |
|\ \ | | | | | | | | | | dmoody256-master | ||||
| * | | updated the Jar tool to not force sources to .class files allowing for ↵ | Daniel Moody | 2017-10-07 | 1 | -2/+0 |
| |/ | | | | | | | directories to be passed as sources as well. | ||||
* | | Fix logic which was broken by automatic fixers. the sort parameter to ↵ | William Deegan | 2017-10-11 | 2 | -1/+26 |
| | | | | | | | | GenerateHelpText() is now actually called. | ||||
* | | Add cmp to SCons.Util as py3 no longer provides it | William Deegan | 2017-10-11 | 2 | -6/+12 |
|/ | |||||
* | Merge pull request #6 from bdbaddog/fix_to_String_for_subst | William Deegan | 2017-10-02 | 1 | -4/+1 |
|\ | | | | | Fix issue where code in utility routine to_String_for_subst() had code where result was dropped | ||||
| * | Fix issue where code in utility routine to_String_for_subst() had code whose ↵ | William Deegan | 2017-10-01 | 1 | -4/+1 |
| | | | | | | | | result was never properly returned. (Found by: James Rinkevich https://pairlist4.pair.net/pipermail/scons-users/2017-October/006358.html ) | ||||
* | | add fix for mistaking $$( for $( and breaking subst. Reported by Noah ↵ | William Deegan | 2017-10-01 | 1 | -2/+15 |
| | | | | | | | | Hoffman noah.hoffman at gmail.com in: https://pairlist4.pair.net/pipermail/scons-users/2017-September/006352.html | ||||
* | | Add test for another subst dollar escaping situation. In this case 34120( is ↵ | William Deegan | 2017-10-01 | 1 | -0/+4 |
|/ | | | | getting translated to (escape closings). Since there is no closing $) it fails with error. | ||||
* | Support python 2 print statements in SConscripts | Thomas Berg | 2017-09-25 | 1 | -2/+0 |
| | | | | | | | | | This fixes a regression introduced in scons-3.0.0, where SConscripts containing python 2 print statements would cause syntax errors even when executing scons with python 2.7. This ensures backward compatibility, allowing users to build legacy code with scons-3.0.0 without having to patch it. | ||||
* | PY2/3 changes to pickle so py2.7 and py3.5+ pickles used in sconsign will be ↵ | William Deegan | 2017-09-11 | 2 | -2/+7 |
| | | | | readable by either. There are still rebuilds when switching | ||||
* | D: added DCommon.xml to hold common variable cvars. the following were ↵ | William Deegan | 2017-09-01 | 1 | -0/+71 |
| | | | | missing which broke doc building. DRPATHPREFIX, DRPATHSUFFIX, DShLibSonameGenerator, SHDLIBVERSION, SHDLIBVERSIONFLAGS | ||||
* | restore default sconsign extension | William Deegan | 2017-09-01 | 1 | -4/+10 |
| | |||||
* | Fix many epydoc warnings | William Deegan | 2017-09-01 | 21 | -231/+246 |
| | |||||
* | Merge in mainline. | Russel Winder | 2017-08-26 | 5 | -5/+20 |
|\ | |||||
| * | PY2/3 get_contents() was returning empty string instead of empty bytes when ↵ | William Deegan | 2017-08-24 | 2 | -1/+3 |
| | | | | | | | | file doesn't exist. get_text_contents() was then trying to call decode on a string object... Fixed. get_contents() now returns empty byte string | ||||
| * | Merged in bdbaddog/scons (pull request #505) | William Deegan | 2017-08-24 | 2 | -3/+14 |
| |\ | | | | | | | | | | Fix handling of non ascii/not utf-8 file contents for PY3 in get_text_contents() | ||||
| | * | Updates to get_text_content() logic and tests | William Deegan | 2017-08-24 | 2 | -5/+8 |
| | | | |||||
| | * | Handle decode errors by backslashing character. Should only throw exception ↵ | William Deegan | 2017-08-23 | 1 | -2/+2 |
| | | | | | | | | | | | | if content is not a byte type now | ||||
| | * | Fix issue for PY3 where file content has not BOM and isn't ascii by ↵ | William Deegan | 2017-08-23 | 2 | -1/+9 |
| | | | | | | | | | | | | decodeing to utf-8 | ||||
| * | | Merged in grbd/scons (pull request #502) | William Deegan | 2017-08-24 | 1 | -1/+3 |
| |\ \ | | |/ | |/| | | | | Fix for building under python3.5 via bootstrap | ||||
| | * | Fix for building under python3.5 via bootstrap | grbd | 2017-08-15 | 1 | -1/+3 |
| | | | |||||
* | | | Make the exists and generate functions consistent over D compilers. | Russel Winder | 2017-08-23 | 1 | -1/+1 |
| | | | |||||
* | | | Merge mainline. | Russel Winder | 2017-08-23 | 5 | -2/+37 |
|\ \ \ | |/ / | |||||
| * | | Fix Bug #3025 - (Credit to Florian : User flow86 on tigris) - Fix typo ↵ | William Deegan | 2017-08-21 | 1 | -1/+1 |
| | | | | | | | | | | | | JAVACLASSSUFIX should have been JAVACLASSSUFFIX | ||||
| * | | Fix Bug #2622 - AlwaysBuild()+MSVC regression. Due to AlwaysBuild'd target ↵ | William Deegan | 2017-08-20 | 1 | -0/+25 |
| | | | | | | | | | | | | not being added to changed_sources. This has been fixed for a while via some changes for other issue/development. I added a unit test to cover this to src/engine/SCons/ExecutorTests.py | ||||
| * | | Fix Bug #2486 - Allow SetOption('silent',True) - Previously this option ↵ | William Deegan | 2017-08-20 | 1 | -0/+8 |
| | | | | | | | | | | | | could not be passed to SetOption | ||||
| * | | Fix Bug #2486 - Allow SetOption('silent',True) - Previously this option ↵ | William Deegan | 2017-08-20 | 1 | -0/+1 |
| | | | | | | | | | | | | could not be passed to SetOption | ||||
| * | | PEP8 | William Deegan | 2017-08-19 | 1 | -0/+1 |
| | | | |||||
| * | | Update CHANGES to cover bug fixed as part of another fix | William Deegan | 2017-08-19 | 1 | -1/+1 |
| |/ | |||||
* | | Update to mainline. | Russel Winder | 2017-08-08 | 14 | -31/+300 |
|\ \ | |/ | |||||
| * | fix comment for vswhere logic | William Deegan | 2017-08-08 | 1 | -1/+1 |
| | | |||||
| * | Fix VS2017 detection logic to fail properly when run on linux (posix) systems | William Deegan | 2017-08-08 | 1 | -4/+11 |
| | | |||||
| * | remove msvc from non windows platforms default list of compilers | William Deegan | 2017-08-08 | 1 | -4/+4 |
| | | |||||
| * | Fix cxx import statement | William Deegan | 2017-08-08 | 1 | -1/+1 |
| | | |||||
| * | PR #344 - Use set() where applicable. In many cases this can lead to ↵ | William Deegan | 2017-08-07 | 1 | -2/+2 |
| | | | | | | | | performance improvements | ||||
| * | Merged in thosrtanner/trt-scons-sig-suppress (pull request #390) | William Deegan | 2017-08-07 | 3 | -11/+49 |
| |\ | |||||
| | * | Allow nested $( $) sections | Thomas Tanner | 2017-02-11 | 3 | -11/+49 |
| | | | |||||
| * | | merge from upstream | William Deegan | 2017-08-07 | 4 | -0/+62 |
| |\ \ | |||||
| | * | | Added docs for use of the PyPackageDir function | grbd | 2017-08-03 | 1 | -0/+23 |
| | | | | |||||
| | * | | Added support for a PyPackageDir function | grbd | 2017-08-03 | 3 | -0/+39 |
| | | | | |||||
| * | | | Pull Request contents P$ 489 from Steve Robinson. Manual edit/checkin ↵ | William Deegan | 2017-08-07 | 3 | -12/+61 |
| | | | | | | | | | | | | | | | | because pull request was done to merge to 2.5.1 branch and not default. |