diff options
| author | Thomas Green <tomgreen66@hotmail.com> | 2021-11-16 22:57:12 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-16 22:57:12 +0000 |
| commit | 32121f3da8cdb9a800b4d2d8253a91a9b9c04ad0 (patch) | |
| tree | 1ffd099d3c854ed91ea28600bc642bd0ee1a68d8 /numpy/distutils | |
| parent | fbb4a6b8b1423b2da508e3ca5a3842c2da4460bc (diff) | |
| download | numpy-32121f3da8cdb9a800b4d2d8253a91a9b9c04ad0.tar.gz | |
Update ccompiler.py
Added ARM compiler.
Diffstat (limited to 'numpy/distutils')
| -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 713b8c72f..752ca1fd4 100644 --- a/numpy/distutils/ccompiler.py +++ b/numpy/distutils/ccompiler.py @@ -706,6 +706,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'), |
