diff options
| author | Sebastian Berg <sebastianb@nvidia.com> | 2023-03-06 08:59:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-06 08:59:44 +0100 |
| commit | b4f6b0b9d2af3e5a7ed0bfb51c8d692298bc2dde (patch) | |
| tree | 85b6812cc1941e4e724e4e9b1d97fbf5764e74d5 /numpy/distutils/ccompiler.py | |
| parent | e76c6bca202c46b202a65de4e29698115d882d66 (diff) | |
| parent | fccb005a6c995923d47aeda4e71a1d2a4a07f703 (diff) | |
| download | numpy-b4f6b0b9d2af3e5a7ed0bfb51c8d692298bc2dde.tar.gz | |
Merge pull request #22982 from yamadafuyuka/add_fujitsuccompiler_and_SSL2
ENH: add support for fujitsu C/C++ compiler and SSL2 to numpy.
Diffstat (limited to 'numpy/distutils/ccompiler.py')
| -rw-r--r-- | numpy/distutils/ccompiler.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index ee00511a8..0e018a268 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -720,6 +720,8 @@ compiler_class['pathcc'] = ('pathccompiler', 'PathScaleCCompiler', "PathScale Compiler for SiCortex-based applications") compiler_class['arm'] = ('armccompiler', 'ArmCCompiler', "Arm C Compiler") +compiler_class['fujitsu'] = ('fujitsuccompiler', 'FujitsuCCompiler', + "Fujitsu C Compiler") ccompiler._default_compilers += (('linux.*', 'intel'), ('linux.*', 'intele'), |
