diff options
Diffstat (limited to 'Lib/distutils/emxccompiler.py')
-rw-r--r-- | Lib/distutils/emxccompiler.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/distutils/emxccompiler.py b/Lib/distutils/emxccompiler.py index 7c3ad02..624c0fe 100644 --- a/Lib/distutils/emxccompiler.py +++ b/Lib/distutils/emxccompiler.py @@ -102,7 +102,8 @@ class EMXCCompiler (UnixCCompiler): debug=0, extra_preargs=None, extra_postargs=None, - build_temp=None): + build_temp=None, + target_lang=None): # use separate copies, so we can modify the lists extra_preargs = copy.copy(extra_preargs or []) @@ -171,7 +172,8 @@ class EMXCCompiler (UnixCCompiler): debug, extra_preargs, extra_postargs, - build_temp) + build_temp, + target_lang) # link () |