first commit

This commit is contained in:
2026-01-13 10:44:14 +08:00
commit eddcdd428f
521 changed files with 100931 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
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