diff options
author | Jesus Cea <jcea@jcea.es> | 2012-10-10 23:20:12 (GMT) |
---|---|---|
committer | Jesus Cea <jcea@jcea.es> | 2012-10-10 23:20:12 (GMT) |
commit | d17833d360a7e35675233c4310cbccbd19c9ca79 (patch) | |
tree | f0616a9a4cd16aef3952c6915049196c9c7853fe /Lib/distutils/ccompiler.py | |
parent | 9407d502085d0e3d281eb5274149ebca4567034c (diff) | |
download | cpython-d17833d360a7e35675233c4310cbccbd19c9ca79.zip cpython-d17833d360a7e35675233c4310cbccbd19c9ca79.tar.gz cpython-d17833d360a7e35675233c4310cbccbd19c9ca79.tar.bz2 |
Closes #16135: Removal of OS/2 support (distutils)
Diffstat (limited to 'Lib/distutils/ccompiler.py')
-rw-r--r-- | Lib/distutils/ccompiler.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/distutils/ccompiler.py b/Lib/distutils/ccompiler.py index c795c95..911e84d 100644 --- a/Lib/distutils/ccompiler.py +++ b/Lib/distutils/ccompiler.py @@ -351,7 +351,7 @@ class CCompiler: return macros, objects, extra, pp_opts, build def _get_cc_args(self, pp_opts, debug, before): - # works for unixccompiler, emxccompiler, cygwinccompiler + # works for unixccompiler, cygwinccompiler cc_args = pp_opts + ['-c'] if debug: cc_args[:0] = ['-g'] @@ -926,7 +926,6 @@ _default_compilers = ( # on a cygwin built python we can use gcc like an ordinary UNIXish # compiler ('cygwin.*', 'unix'), - ('os2emx', 'emx'), # OS name mappings ('posix', 'unix'), @@ -968,8 +967,6 @@ compiler_class = { 'unix': ('unixccompiler', 'UnixCCompiler', "Mingw32 port of GNU C Compiler for Win32"), 'bcpp': ('bcppcompiler', 'BCPPCompiler', "Borland C++ Compiler"), - 'emx': ('emxccompiler', 'EMXCCompiler', - "EMX port of GNU C Compiler for OS/2"), } def show_compilers(): |