summaryrefslogtreecommitdiff
path: root/Lib/distutils/command/build_ext.py
Commit message (Expand)AuthorAgeFilesLines
* Removed the implib_dir instance variable because it is unused.Thomas Heller2000-09-281-13/+9
* Added 'boolean_options' list to support config file parsing.Greg Ward2000-09-251-0/+2
* Fixed to respect 'define_macros' and 'undef_macros' on Extension object.Greg Ward2000-09-171-1/+5
* Document the directory separatory for include dir and library dir lists.Greg Ward2000-09-161-2/+3
* Adjust to the new sysconfig regime: use 'get_config_var()' insteadGreg Ward2000-09-151-3/+4
* Typo fix.Greg Ward2000-09-061-1/+1
* In 'check_extensions_list()': when converting old-style 'buildinfo' dict,Greg Ward2000-08-261-1/+3
* get_export_symbols() changed, adds now module init function if not givenGreg Ward2000-08-131-8/+4
* Patch from Rene Liebscher, tweaked by me:Greg Ward2000-08-011-44/+41
* Fixed a grab-bag of typos spotted by Rob Hooft.Greg Ward2000-07-271-1/+1
* Typo fix from David Ascher.Greg Ward2000-07-271-1/+1
* Typo fix from Bastian KleineidamAndrew M. Kuchling2000-07-141-1/+1
* fix inconsistent use of tabs and spacesJeremy Hylton2000-07-071-5/+5
* Don't try to guess the name of a .def file -- if one is supplied, use it,Greg Ward2000-06-291-6/+0
* Fixed so 'get_source_files()' calls 'check_extension_list()' -- that way,Greg Ward2000-06-291-1/+1
* typos fixed by Rob HooftJeremy Hylton2000-06-281-2/+2
* Lyle Johnson: pass in temp directory as 'build_temp' argument when callingGreg Ward2000-06-281-1/+2
* A-ha! Read Thomas' patch a little more carefully and figured it out:Greg Ward2000-06-271-1/+2
* Thomas Heller: added --swig-cpp option and fixed silly typos in SWIG support.Greg Ward2000-06-271-9/+21
* Removed some debugging code that slipped into the last checkin.Greg Ward2000-06-251-4/+3
* Fixed the "pre-link hook" so it actually works, mainly by renaming itGreg Ward2000-06-251-41/+33
* Fixed a few silly bugs in my SWIG support code. (Hey, I said it wasGreg Ward2000-06-251-3/+5
* Changed so all the help-generating functions are defined, at module-level,Greg Ward2000-06-241-3/+7
* Experimental, completely untested SWIG support.Greg Ward2000-06-241-5/+74
* Pulled the MSVC++-specific hackery out to a new method, 'prelink_hook()',Greg Ward2000-06-171-36/+63
* Patch from Rene Liebscher: this adds "--help-foo" options to list theGreg Ward2000-06-071-0/+5
* Overhauled to expect 'self.extensions' (taken from 'ext_modules' in theGreg Ward2000-05-311-66/+128
* Some far-reaching naming changes:Greg Ward2000-05-271-2/+2
* Rene Liebscher: check if the extension file (.so or .pyd) isGreg Ward2000-05-261-19/+24
* Normalized all the end-of-class lines.Greg Ward2000-05-251-1/+1
* 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