diff options
author | Matti Picus <matti.picus@gmail.com> | 2021-12-24 09:48:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-24 09:48:38 +0200 |
commit | d0248e91fba772ab31ca092d841fd65ab628abca (patch) | |
tree | 4fce07ca22d13b3a7f18a9e4eb92909902eb2f65 /numpy/distutils/ccompiler.py | |
parent | 43e333e2ff641f6dce852e46c9c650333b0d4b3d (diff) | |
parent | e6c3f44299453a841e76cf52714168979d0899dd (diff) | |
download | numpy-d0248e91fba772ab31ca092d841fd65ab628abca.tar.gz |
Merge pull request #20416 from ARCCA/armcompiler
ENH: Add ARM Compiler with ARM Performance Library support
Diffstat (limited to 'numpy/distutils/ccompiler.py')
-rw-r--r-- | numpy/distutils/ccompiler.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/ccompiler.py b/numpy/distutils/ccompiler.py index ef1744db2..16f00d8ed 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -708,6 +708,9 @@ compiler_class['intelemw'] = ('intelccompiler', 'IntelEM64TCCompilerW', "Intel C Compiler for 64-bit applications on Windows") compiler_class['pathcc'] = ('pathccompiler', 'PathScaleCCompiler', "PathScale Compiler for SiCortex-based applications") +compiler_class['arm'] = ('armccompiler', 'ArmCCompiler', + "Arm C Compiler") + ccompiler._default_compilers += (('linux.*', 'intel'), ('linux.*', 'intele'), ('linux.*', 'intelem'), |