summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_ext.py
Commit message (Collapse)AuthorAgeFilesLines
* Close #24508: Backport the 3.5 MSBuild project files.Zachary Ware2015-07-161-4/+6
| | | | | | | The old project files move to PC/VS9.0 and remain supported. VS2008 is still required to build 2.7; VS2010 (or later, plus Windows SDK 7.1) is *also* required to use the new project files.
* - Issue #17219: Add library build dir for Python extension cross-builds.doko@ubuntu.com2014-10-021-1/+1
|
* Issue #4366: Fix building extensions on all platforms when --enable-shared ↵Antoine Pitrou2013-09-281-5/+3
| | | | is used.
* Fix parsing of build_ext --libraries option (#1326113)Éric Araujo2012-02-151-2/+1
|
* Merged revisions 87280 via svnmerge fromÉric Araujo2010-12-151-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r87280 | eric.araujo | 2010-12-15 22:07:22 +0100 (mer., 15 déc. 2010) | 2 lines Fix build_ext with VS 8.0. Patch by Hirokazu Yamamoto (#9558). ........
* Merged revisions 84680 via svnmerge fromAntoine Pitrou2010-09-101-1/+3
| | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r84680 | antoine.pitrou | 2010-09-10 21:44:44 +0200 (ven., 10 sept. 2010) | 4 lines Issue #941346: Improve the build process under AIX and allow Python to be built as a shared library. Patch by Sébastien Sablé. ........
* #7092: Fix some -3 warnings, and fix Lib/platform.py when the path contains ↵Florent Xicluna2010-04-011-1/+1
| | | | a double-quote.
* reverting partially distutils to its 2.6.x state so 2.7a4 looks more like ↵Tarek Ziadé2010-03-051-123/+77
| | | | the 2.7b1 in this. the whole revert will occur after a4 is tagged
* added local get_platform/set_platform APIs in distutils.sysconfigTarek Ziadé2010-01-261-3/+1
|
* taking sysconfig out of distutilsTarek Ziadé2010-01-231-19/+18
|
* massive import cleaning in DistutilsTarek Ziadé2009-12-211-1/+2
|
* reverted changes for #6459 (doesn't apply on 2.x)Tarek Ziadé2009-07-111-3/+3
|
* fixed #6459: distutils.command.build_ext.get_export_symbols now uses 'PyInit'Tarek Ziadé2009-07-111-3/+3
|
* cleaned up distutils.build_ext moduleTarek Ziadé2009-07-111-26/+16
|
* PendingDeprecationWarning -> DeprecationWarning in build_extTarek Ziadé2009-07-091-2/+2
|
* Sets the compiler attribute to keep the old behavior for third-party packages.Tarek Ziadé2009-07-081-3/+19
|
* Fixed #6377: distutils compiler switch ignored (and added a deprecation ↵Tarek Ziadé2009-07-061-23/+55
| | | | warning if compiler is not used as supposed = a string option)
* Fixed #6403 : package path usage for build_extTarek Ziadé2009-07-031-4/+10
|
* Fixed 6365: wrong inplace location for build_ext if the extension had dotsTarek Ziadé2009-06-291-4/+4
|
* fixed the 'package' option of build_extTarek Ziadé2009-05-191-11/+13
|
* Fixed the library extension when distutils build_ext is used inplaceTarek Ziadé2009-05-181-3/+3
|
* the compiler attribute is used in setup.py; can't renameBenjamin Peterson2009-05-121-14/+14
|
* fixed #5977: distutils build_ext.get_outputs was not using the inplace optionTarek Ziadé2009-05-121-42/+45
|
* fixed #5984 and improved test coverageTarek Ziadé2009-05-101-45/+25
|
* catching msvc9compiler error as wellTarek Ziadé2009-03-311-1/+1
|
* #5583 Added optional Extensions in DistutilsTarek Ziadé2009-03-311-1/+7
|
* Issue #5052: make Distutils compatible with 2.3 again.Tarek Ziadé2009-02-271-4/+14
|
* removed unused importTarek Ziadé2009-02-261-1/+1
|
* Fixed #5132: enable extensions to link on SolarisTarek Ziadé2009-02-051-3/+5
|
* Issue #5052: removed backward compatibility information (out of date)Tarek Ziadé2009-01-251-2/+0
|
* Update distutils so that it triggers no warnings when run under -3.Brett Cannon2008-08-171-1/+1
|
* Fixed test_distutils error (test_build_ext) on VC6.Hirokazu Yamamoto2008-08-141-1/+4
|
* Add --user option to build_extChristian Heimes2008-05-091-1/+15
|
* Issue #2513: enable 64bit cross compilation on windows.Mark Hammond2008-04-071-3/+27
|
* Removed uses of dict.has_key() from distutils, and uses ofGuido van Rossum2008-02-211-1/+1
| | | | | | callable() from copy_reg.py, so the interpreter now starts up without warnings when '-3' is given. More work like this needs to be done in the rest of the stdlib.
* Fixed paths to Windows build directories in build_ext.pyChristian Heimes2008-02-031-3/+3
| | | | Use vsbuild instead of devenv in build.bat and _bsddb.vcproj
* Applied my patch #1455 with some extra fixes for VS 2005Christian Heimes2007-12-031-1/+13
| | | | | The new msvc9compiler module supports VS 2005 and VS 2008. I've also fixed build_ext to support PCbuild8 and PCbuild9 and backported my fix for xxmodule.c from py3k. The old code msvccompiler is still in place in case somebody likes to build an extension with VS 2003 or earlier. I've also updated the cygwin compiler module for VS 2005 and VS 2008. It works with VS 2005 but I'm unable to test it with VS 2008. We have to wait for a new version of cygwin.
* Bug #1706381: Specifying the SWIG option "-c++" in the setup.py fileGeorg Brandl2007-04-241-1/+2
| | | | | (as opposed to the command line) will now write file names ending in ".cpp" too.
* Patch #1569798: fix a bug in distutils when building Python from aGeorg Brandl2007-03-131-2/+2
| | | | directory within sys.exec_prefix.
* Bug #1600860: Search for shared python library in LIBDIR, notMartin v. Löwis2007-02-091-3/+12
| | | | | lib/python/config, on "linux" and "gnu" systems. Will backport.
* - Fix build failure on kfreebsd and on the hurd.Matthias Klose2006-12-031-1/+1
|
* Disable linking extensions with -lpython2.5 for darwin. This should fix bugRonald Oussoren2006-05-231-0/+5
| | | | #1487105.
* Patch #1429775: Link Python modules to libpython on linux ifMartin v. Löwis2006-04-101-2/+11
| | | | --enable-shared. Fixes #832799.
* Update compatibility comments to 2.1, corresponding to PEP 291 1.13.Martin v. Löwis2004-11-101-1/+1
|
* Patch 1046644 - improved distutils support for SWIG.Anthony Baxter2004-10-141-4/+23
|
* Whitespace normalization, via reindent.py.Tim Peters2004-07-181-2/+2
|
* Reverting local change checked in by mistake.Tim Peters2004-05-111-4/+3
|
* Added 2.3.3 and 2.3.4 to the release table. Added 2004 to the list ofTim Peters2004-05-111-3/+4
| | | | copyright years.
* Revert another local change that snuck into a whitespace normalizationTim Peters2004-01-181-2/+1
| | | | patch.
* Whitespace normalization.Tim Peters2004-01-181-1/+2
|