summaryrefslogtreecommitdiffstats
path: root/src/engine/SCons/Tool/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* merge headsWilliam Deegan2016-11-281-1/+1
|\
| * Fix tests failing on win32 AR and Fortran and M4William Deegan2016-11-281-1/+1
| |
* | Fix some minor formatting issues flagged by pycharmsWilliam Deegan2016-10-251-5/+5
|/
* Remove debug code to reenable python version specific tool module loading code.William Deegan2016-05-231-1/+1
|
* use old tool loading code for py2, and new code (not quite working yet) for py3William Deegan2016-05-231-48/+53
|
* minor improvement to Tool loading code for py2/3 compatWilliam Deegan2016-05-191-14/+15
|
* fix for module loading to us importlib instead of imp (which no longer works ↵William Deegan2016-05-191-20/+48
| | | | in pyton3)
* copy src/engine/SCons/Tool/__init__.py as the merge had issues at some point ↵William Deegan2016-05-121-132/+43
| | | | in the past the the versioned shared library logic got mangled. Then 2to3 that file. Seems to e working now
* Fixed usage of linknames which needed to be defined outside of the two ↵William Deegan2016-05-091-1/+4
| | | | methods which share it's value and wasn't. Curious this only fails in python2.7 when __future__ is imported..
* Post merge commit for safety. Building Fortran code works, but tests fail.Russel Winder2015-12-241-48/+438
|\
| * removed several pre-2.7 methods and imports, including some basic refactoringsDirk Baechle2015-12-101-1/+1
| |
| * Merged in williamblevins/scons_20150323 (pull request #244)William Deegan2015-11-131-0/+7
| |\
| | * Issue 2264: Added cross-language scanner support.William Blevins2015-05-171-0/+7
| | |
| * | cyglink: fix for shlib symlink not being cleaned correctlyPaweł Tomulik2015-09-201-2/+6
| | |
| * | fix broken soname generatorPawel Tomulik2015-09-201-1/+2
| | |
| * | revision: address remarks made by Gary Oberbrunnerptomulik2015-09-151-90/+144
| | |
| * | minor correction to debug code in Tool/__init__.pyPawel Tomulik2015-09-071-3/+5
| | |
| * | add action string function for LibSymlinksActionPawel Tomulik2015-09-041-5/+20
| | |
| * | minor fix in Tool/__init__.pyPaweł Tomulik2015-09-041-1/+1
| | |
| * | remove redundant get_lib_prefix() methodPaweł Tomulik2015-09-041-11/+0
| | |
| * | refactored the versioned lib code a littlePaweł Tomulik2015-09-041-23/+75
| | |
| * | reivised code, fixed cygwin/variant-dir issue, cleaned-up some areasPawel Tomulik2015-09-041-26/+41
| | |
| * | new versioned libraries - gnulink and cyglink for nowPawel Tomulik2015-09-021-136/+292
| |/
| * - switching Node class and NodeInfo/Binfo to using slotsDirk Baechle2015-02-261-1/+1
| | | | | | | | - memoizer subsystem now uses decorators instead of the metaclass approach
| * - fixed typo, which would use the wrong attributeDirk Baechle2014-12-201-12/+3
| |
| * - switching versioned shared libs to using Node.attributesDirk Baechle2014-12-191-3/+16
| |
| * also set soname on sunosAlexandre Feblot2014-11-121-0/+5
| |
| * Attempt to fix versionned shared library on SolarisAlexandre Feblot2014-09-211-1/+1
| |
* | Merged default branch into python3-port to keep it up to date.Gary Oberbrunner2014-08-231-5/+9
|\ \ | |/ | | | | | | Hand-updated a few things to keep them python3-safe, and handled several merge conflicts.
| * Remove RPM and m4 from default tools on Windows to speed up SConsanatoly techtonik2014-04-281-2/+4
| | | | | | | | | | start. Note that BitKeeper, CVS, Perforce, RCS, SCCS will be removed from default tools on all platforms in future.
| * The changes to the D support evolved over the last many months packaged as a ↵Russel Winder2014-04-161-3/+5
| | | | | | | | single changeset.
* | Merged with [default]Stefan Zimmermann2014-03-311-8/+22
|\ \ | |/
| * Correctly fix bug #2903, failure to rebuild when linker options change.Gary Oberbrunner2013-10-271-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The failure to rebuild when linker options change was introduced in abded0675444, "Add library version support to Shared Lib builder", between 2.2.0 and 2.3.0. Turning ShlinkAction into a FunctionAction instead of a CommandAction made it stop depending on $SHLINKCOM. Normally, a CommandAction calls get_presig (Action.py:815) which removes $( ... $) and uses the rest of that string (recursively fully substituted) as the contents to hash. FunctionActions only look at the body of the function, so that removed the dependency on $SHLINKCOM altogether. Adding it back in the varlist does this (Action.py:443): for v in vl: result.append(env.subst('${'+v+'}')) so it deep-substitutes the whole thing, including all the $( ... $) parts. (All varlist vars do this, not just in FunctionActions.) What we really want is to depend on the value of env['SHLINKCOM'] in the way CommandActions do, i.e. without the $( ... $) parts, definitely not the fully substituted version of it. I'm pretty sure the ignored $(...$) parts should not ever be included in the signature, so this change updates the varlist handling code to work the way CommandActions always have. This change also renames the test files to use the correct bug number and updates the test.
| * Merged pull request #86Gary Oberbrunner2013-09-291-1/+3
| |\
| | * Fix http://scons.tigris.org/issues/show_bug.cgi?id=2903Alexandre Feblot2013-09-151-1/+3
| | |
| * | - fix for #2916, "Issues with versioned SharedLibrary under OpenBSD"Dirk Baechle2013-09-111-7/+15
| |/
* | Made former 2to3 changes Python 2.7 compatible (or removed unneeded changes).Stefan Zimmermann2014-03-311-1/+2
| |
* | Manual python3 post-2to3 fixes from Neal BeckerGary Oberbrunner2013-09-221-2/+2
| |
* | Result of raw 2to3 run (2to3-2.7); checkpoint for python3 conversion.Gary Oberbrunner2013-09-221-18/+18
|/
* Merged in managan/scons_versionedlib (pull request #82)Gary Oberbrunner2013-08-251-5/+13
|\ | | | | | | Versioned lib rebuild was broken
| * Add code to delete any current symlink before trying to crete them. Before ↵Rob Managan2013-05-301-5/+13
| | | | | | | | | | | | the step of creating the symlink would fail. Also update the code in install.py to create the same chain of links as __init__.py did. The installed links to the shared library all pointed at the shared library instead of to the next one in the chain with more version numbers
* | Add a cyglink toolDavid Rothenberger2013-08-171-0/+8
|/ | | | | | | | | | Add cyglink, a specialization of gnulink with the following properties: 1. Set SHLIBPREFIX to "cyg" and SHLIBSUFFIX = ".dll". 2. Remove any "lib" after "cyg", to accommodate build scripts that name libraries "libFoo". 3. Create DLL import libraries.
* Make VersionedSharedLib and its test not fail on WindowsGary Oberbrunner2012-12-221-5/+9
|
* removed versioned library support from Install and put it in InstallVersionedLibRobert Managan2012-12-181-3/+5
|
* Change symlinks to match what ldconfig doesRobert Managan2012-11-181-5/+17
|
* Get sym links working with VariantDir and add a testRobert Managan2012-11-071-2/+7
|
* Start to clean up changes in __init__.py and link.py. Add support in ↵Robert Managan2012-11-051-31/+51
| | | | install.py for versioned shared libs. Still need test case.
* Treat the sym links as side effects instead of extra targets. This prevents ↵Robert Managan2012-10-241-20/+32
| | | | Install from copying the links as full files. Still need to get Install to create the links, if possible. Still a test failure or two to clean up as well. Needs a new test as well.
* add support for darwinRobert Managan2012-10-171-6/+5
|
* Add library version support to Shared Lib builderRobert Managan2012-10-171-1/+68
|