You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import sys
|
|
import importlib
|
|
|
|
|
|
def bypass_compiler_fixup(cmd, args):
|
|
return cmd
|
|
|
|
|
|
if sys.platform == 'darwin':
|
|
compiler_fixup = importlib.import_module('_osx_support').compiler_fixup
|
|
else:
|
|
compiler_fixup = bypass_compiler_fixup
|