summaryrefslogtreecommitdiff
path: root/numpy/distutils/ccompiler.py
diff options
context:
space:
mode:
authorSebastian Berg <sebastianb@nvidia.com>2023-03-06 08:59:44 +0100
committerGitHub <noreply@github.com>2023-03-06 08:59:44 +0100
commitb4f6b0b9d2af3e5a7ed0bfb51c8d692298bc2dde (patch)
tree85b6812cc1941e4e724e4e9b1d97fbf5764e74d5 /numpy/distutils/ccompiler.py
parente76c6bca202c46b202a65de4e29698115d882d66 (diff)
parentfccb005a6c995923d47aeda4e71a1d2a4a07f703 (diff)
downloadnumpy-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.py2
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'),