ccompiler.py 524 B

1234567891011121314151617181920212223242526
  1. from .compat.numpy import ( # noqa: F401
  2. _default_compilers,
  3. compiler_class,
  4. )
  5. from .compilers.C import base
  6. from .compilers.C.base import (
  7. gen_lib_options,
  8. gen_preprocess_options,
  9. get_default_compiler,
  10. new_compiler,
  11. show_compilers,
  12. )
  13. from .compilers.C.errors import CompileError, LinkError
  14. __all__ = [
  15. 'CompileError',
  16. 'LinkError',
  17. 'gen_lib_options',
  18. 'gen_preprocess_options',
  19. 'get_default_compiler',
  20. 'new_compiler',
  21. 'show_compilers',
  22. ]
  23. CCompiler = base.Compiler