python (3.11.7)
       1  import sys
       2  import importlib
       3  
       4  
       5  def bypass_compiler_fixup(cmd, args):
       6      return cmd
       7  
       8  
       9  if sys.platform == 'darwin':
      10      compiler_fixup = importlib.import_module('_osx_support').compiler_fixup
      11  else:
      12      compiler_fixup = bypass_compiler_fixup