/opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/distutils
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')
.
Edit
..
Edit
__config__.py
Edit
__init__.py
Edit
__init__.pyi
Edit
__pycache__
Edit
_shell_utils.py
Edit
armccompiler.py
Edit
ccompiler.py
Edit
ccompiler_opt.py
Edit
checks
Edit
command
Edit
conv_template.py
Edit
core.py
Edit
cpuinfo.py
Edit
exec_command.py
Edit
extension.py
Edit
fcompiler
Edit
from_template.py
Edit
fujitsuccompiler.py
Edit
intelccompiler.py
Edit
lib2def.py
Edit
line_endings.py
Edit
log.py
Edit
mingw
Edit
mingw32ccompiler.py
Edit
misc_util.py
Edit
msvc9compiler.py
Edit
msvccompiler.py
Edit
npy_pkg_config.py
Edit
numpy_distribution.py
Edit
pathccompiler.py
Edit
setup.py
Edit
system_info.py
Edit
tests
Edit
unixccompiler.py
Edit