summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_ext.py
Commit message (Expand)AuthorAgeFilesLines
...
* Harry Henry Gebel: get extra compiler flags from the CFLAGS environmentGregory P. Smith2000-05-131-0/+8
* From Lyle Johnson: renamed 'implib_dir' to 'implib_file', andGregory P. Smith2000-05-131-7/+5
* Fix from Lyle Johnson: add the '--compiler' option.Gregory P. Smith2000-05-121-2/+11
* Added comment about the MSVC-specific kludge.Greg Ward2000-05-091-0/+10
* Added the ability to sneak extra flags onto the C compiler command lineGreg Ward2000-05-061-1/+3
* Cleaned up/simplified error-handling:Greg Ward2000-04-151-6/+6
* Use 'get_python_inc()' to figure out the Python include directoriesGreg Ward2000-04-141-8/+5
* Added '--force' option -- very clear what it means for building (ignoreGreg Ward2000-04-101-1/+5
* Patch (mostly) from Thomas Heller for building on Windows:Greg Ward2000-03-311-11/+36
* Oops: 'build_extensions()' no longer takes an 'extensions' list.Greg Ward2000-03-301-1/+1
* Put the Python "system" include dir last, rather than first.Greg Ward2000-03-291-1/+3
* Added 'get_outputs()' in prepartion for the 'bdist' command.Greg Ward2000-03-291-8/+29
* Fixed a bunch of screwed-up logic and inconsistent terminology.Greg Ward2000-03-261-19/+33
* Took out what looks like old debugging code that probably should neverGreg Ward2000-03-221-2/+1
* In 'finalize_options()': if 'self.libs' is a string, make it a singleton list.Greg Ward2000-03-181-0/+3
* Don't pass 'keep_dir' to 'compile()' method of CCompiler -- no longer used.Greg Ward2000-03-061-3/+4
* Renamed 'build_lib' command to 'build_clib':Greg Ward2000-03-021-3/+3
* Changed '__rcsid__' to '__revision__'.Greg Ward2000-03-021-1/+1
* If the "build_lib" command built any C libraries, link with them allGreg Ward2000-03-021-3/+12
* Build reorg:Greg Ward2000-03-011-16/+41
* Renamed 'set_default_options()' to 'initialize_options()', andGreg Ward2000-02-181-5/+5
* Renamed all 'options' class attributes to 'user_options'.Greg Ward2000-02-181-19/+20
* Renamed all command classes so they're exactly the same as the name of theGreg Ward2000-02-181-1/+1
* Path from Thomas Heller: resurrect the .def file kludge while preserving theGreg Ward2000-02-101-2/+14
* Added 'debug' option, and changed compile/link calls to use it.Greg Ward2000-02-091-4/+12
* Ditch .def file kludge for (much smaller) /export option kludge.Greg Ward2000-02-081-12/+1
* Tweaked various comments, docstrings, and error messages.Greg Ward2000-02-051-2/+12
* Improved an error message.Greg Ward2000-02-031-2/+5
* Added 'description' class attribute to every command class (to help theGreg Ward2000-01-301-5/+10
* Changed 'build_extensions()' so 'sources' can be a list or tuple; andGreg Ward1999-12-121-3/+4
* Pass 'force' flag to 'new_compiler()'.Greg Ward1999-10-031-2/+3
* Added 'package' option.Greg Ward1999-09-291-7/+44
* Some option changes:Greg Ward1999-09-211-17/+30
* Added support for 'package' option, including where to link theGreg Ward1999-09-131-8/+11
* Changed to reflect the new "command options" regime -- in particular,Greg Ward1999-09-081-7/+15
* Patch from Perry Stoll: pass 'build_info' to link method.Greg Ward1999-08-291-2/+1
* Implements the 'build_ext' command for building C/C++ extension modules.Greg Ward1999-08-141-0/+192