PATH: //opt/cloudlinux/venv/lib/python3.11/site-packages/numpy/distutils
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 __config__.py
↓
X
📄 __init__.py
↓
X
📄 __init__.pyi
↓
X
📁 __pycache__/
X
📄 _shell_utils.py
↓
X
📄 armccompiler.py
↓
X
📄 ccompiler.py
↓
X
📄 ccompiler_opt.py
↓
X
📁 checks/
X
📁 command/
X
📄 conv_template.py
↓
X
📄 core.py
↓
X
📄 cpuinfo.py
↓
X
📄 exec_command.py
↓
X
📄 extension.py
↓
X
📁 fcompiler/
X
📄 from_template.py
↓
X
📄 fujitsuccompiler.py
↓
X
📄 intelccompiler.py
↓
X
📄 lib2def.py
↓
X
📄 line_endings.py
↓
X
📄 log.py
↓
X
📁 mingw/
X
📄 mingw32ccompiler.py
↓
X
📄 misc_util.py
↓
X
📄 msvc9compiler.py
↓
X
📄 msvccompiler.py
↓
X
📄 npy_pkg_config.py
↓
X
📄 numpy_distribution.py
↓
X
📄 pathccompiler.py
↓
X
📄 setup.py
↓
X
📄 system_info.py
↓
X
📁 tests/
X
📄 unixccompiler.py
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: armccompiler.py
from distutils.unixccompiler import UnixCCompiler class ArmCCompiler(UnixCCompiler): """ Arm compiler. """ compiler_type = 'arm' cc_exe = 'armclang' cxx_exe = 'armclang++' 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 + ' -O3 -fPIC', compiler_so=cc_compiler + ' -O3 -fPIC', compiler_cxx=cxx_compiler + ' -O3 -fPIC', linker_exe=cc_compiler + ' -lamath', linker_so=cc_compiler + ' -lamath -shared')
SIMPAN PERUBAHAN