mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
OS/2 patches by Andrew I MacIntyre for distutils.
Closes patch #435381.
This commit is contained in:
parent
c318260a71
commit
2544f51036
8 changed files with 108 additions and 4 deletions
|
@ -846,6 +846,7 @@ _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'),
|
||||
|
@ -892,6 +893,8 @@ compiler_class = { 'unix': ('unixccompiler', 'UnixCCompiler',
|
|||
"Borland C++ Compiler"),
|
||||
'mwerks': ('mwerkscompiler', 'MWerksCompiler',
|
||||
"MetroWerks CodeWarrior"),
|
||||
'emx': ('emxccompiler', 'EMXCCompiler',
|
||||
"EMX port of GNU C Compiler for OS/2"),
|
||||
}
|
||||
|
||||
def show_compilers():
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue