This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
|
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
|