hacking-jack's picture
Upload 1579 files
8070315 verified
raw
history blame contribute delete
239 Bytes
import importlib
import sys
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