summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/unixccompiler.py
Commit message (Expand)AuthorAgeFilesLines
* Patch #718049: Setting exe_extension for cygwinJason Tishler2003-04-181-0/+2
* Patch #642019: Recognize gcc-x.y as gcc.Martin v. Löwis2002-11-211-1/+1
* Remove 'created by' lines; people can use CVS for this, and the information i...Andrew M. Kuchling2002-11-141-2/+0
* This patch fixes the following bugs:Gustavo Niemeyer2002-11-051-4/+8
* MacOSX linker doesn't understand -R flag at all, no matter how you feed itSkip Montanaro2002-10-091-1/+4
* The .preprocess() method didn't work, because it didn't add the input fileAndrew M. Kuchling2002-09-091-0/+1
* Add implementation of _compile() and use default compile() method.Jeremy Hylton2002-06-181-18/+6
* Refactor compile() method implementations.Jeremy Hylton2002-06-131-28/+12
* More style changes and little cleanups.Jeremy Hylton2002-06-131-63/+33
* Some more style improvementsJeremy Hylton2002-06-131-25/+4
* Python style conformance: Delete spaces between name of function and arglist.Jeremy Hylton2002-06-131-41/+41
* Remove unused imports caught by pycheckerJeremy Hylton2002-06-041-1/+1
* Make setup.py less chatty by default.Jeremy Hylton2002-06-041-3/+4
* on MacOSX/Darwin, use ranlib when building static libs.Just van Rossum2002-02-111-1/+4
* When using GCC, use the right option to add a directory to the list of dirsFred Drake2001-12-111-1/+18
* Whitespace normalization.Fred Drake2001-12-061-8/+8
* Patch by Bill Noon: added 'dylib' as a library type along withJack Jansen2001-08-271-2/+7
* Fix a mismatched parenthesis in the last patch.Guido van Rossum2001-07-161-1/+1
* [Bug #441527] Fixes for preprocessor support, contributed by TarnAndrew M. Kuchling2001-07-161-4/+5
* Patch #413912 from Steve Majewski: Add .m to the list of extensionsAndrew M. Kuchling2001-04-051-1/+1
* Big patch from Rene Liebscher to simplify the CCompiler API andGreg Ward2000-09-271-82/+18
* Standardize whitespace in function calls.Greg Ward2000-09-261-52/+52
* Added 'debug' flag to 'find_library_file()'.Greg Ward2000-08-041-1/+1
* Fix to call 'library_filename()' instead of the non-existentGreg Ward2000-07-271-3/+5
* Lyle Johnson: added 'build_temp' parameter to 'link_shared_{lib,object}()'Greg Ward2000-06-281-3/+8
* Got rid of direct dependence on the sysconfig module. Mainly, thisGreg Ward2000-06-251-67/+35
* Added 'preprocess()' method to CCompiler interface, and implementedGreg Ward2000-06-211-0/+32
* Import exceptions from errors.py, not ccompiler.py.Greg Ward2000-05-301-3/+3
* Changed to catch compile/link failures and raise CompileError, LibError,Greg Ward2000-05-301-5/+22
* Added support for the 'export_symbols' parameter to 'link_shared_object()'Greg Ward2000-05-201-0/+3
* Don't run "ranlib" if sysconfig's RANLIB (from Python's Makefile) startsGreg Ward2000-04-141-5/+7
* Cleaned up use of sysconfig module a bit: don't import more namesGreg Ward2000-04-141-7/+13
* Added 'runtime_library_dirs' parameter to 'link_*()' methods, and changed toGreg Ward2000-03-261-9/+13
* Changed to pay attention to the 'runtime_library_dirs' list (= 'rpath'Greg Ward2000-03-181-2/+9
* Renamed 'link_static_lib() to 'create_static_lib()'.Greg Ward2000-03-101-6/+6
* Serious overhaul of the C compiler interface and the two classes thatGreg Ward2000-03-061-185/+52
* Changed '__rcsid__' to '__revision__'.Greg Ward2000-03-021-1/+1
* In the 'compile()' method: preserve the directory portion of sourceGreg Ward2000-03-021-2/+7
* In compile/link methods: ensure that the directory we expect to be writing toGreg Ward2000-03-011-1/+6
* Typecheck 'output_dir' argument to compile/link methods.Greg Ward2000-02-101-0/+6
* Added 'debug' flags to compile and link methods, and modified code to addGreg Ward2000-02-091-1/+13
* Changed 'compile()' method to compile files one-at-a-time -- gives betterGreg Ward2000-02-031-28/+21
* Abstracted '_fix_link_args()' out of 'link_shared_object()'.Greg Ward2000-01-091-37/+133
* In 'compile()' method, renamed 'includes' parameter to 'include_dirs' forGreg Ward1999-12-121-6/+16
* Fixed order of link options: object files now precede library stuff.Greg Ward1999-10-031-21/+58
* Catch up with latest changes in CCompiler:Greg Ward1999-09-291-10/+22
* In 'link_shared_object()', try to be less sensitive to missing input filesGreg Ward1999-09-211-1/+11
* Added 'output_dir' parameter to 'compile()' and 'link_shared_object().Greg Ward1999-09-131-22/+83
* Ditched '_gen_preprocess_options()' and '_gen_lib_options()' -- they'reGreg Ward1999-09-081-68/+8
* Patch from Perry Stoll: caught up with changes in CCompiler necessary (?)Greg Ward1999-08-291-8/+21