PATH:
opt
/
alt
/
python37
/
lib64
/
python3.7
/
site-packages
/
numpy
/
distutils
from __future__ import division, absolute_import, print_function from distutils.unixccompiler import UnixCCompiler class PathScaleCCompiler(UnixCCompiler): """ PathScale compiler compatible with an gcc built Python. """ compiler_type = 'pathcc' cc_exe = 'pathcc' cxx_exe = 'pathCC' def __init__ (self, verbose=0, dry_run=0, force=0): UnixCCompiler.__init__ (self, verbose, dry_run, force) cc_compiler = self.cc_exe cxx_compiler = self.cxx_exe self.set_executables(compiler=cc_compiler, compiler_so=cc_compiler, compiler_cxx=cxx_compiler, linker_exe=cc_compiler, linker_so=cc_compiler + ' -shared')
[-] info.py
[edit]
[-] site.cfg
[edit]
[-] msvc9compiler.py
[edit]
[+]
command
[-] lib2def.py
[edit]
[-] from_template.py
[edit]
[-] pathccompiler.py
[edit]
[-] core.py
[edit]
[-] msvccompiler.py
[edit]
[-] __version__.py
[edit]
[-] setup.py
[edit]
[+]
__pycache__
[+]
tests
[-] exec_command.py
[edit]
[-] conv_template.py
[edit]
[-] cpuinfo.py
[edit]
[-] intelccompiler.py
[edit]
[-] ccompiler.py
[edit]
[-] system_info.py
[edit]
[-] environment.py
[edit]
[-] numpy_distribution.py
[edit]
[-] line_endings.py
[edit]
[-] npy_pkg_config.py
[edit]
[-] mingw32ccompiler.py
[edit]
[-] __config__.py
[edit]
[-] unixccompiler.py
[edit]
[-] log.py
[edit]
[-] __init__.py
[edit]
[-] compat.py
[edit]
[+]
fcompiler
[+]
..
[+]
mingw
[-] extension.py
[edit]
[-] misc_util.py
[edit]