diff options
author | sompen <somashekar.penugonda@cirrus.com> | 2019-06-11 22:15:03 +0530 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-06-11 11:38:07 -0700 |
commit | 3c461bcf4fe561dd77ba80420c78936b92f07c1b (patch) | |
tree | 0bc643f1f246965d21d86064dd99c1a886a0955b | |
parent | 201ecf52d105a2d4a815460f49dec6ad0383286a (diff) | |
download | meson-3c461bcf4fe561dd77ba80420c78936b92f07c1b.zip meson-3c461bcf4fe561dd77ba80420c78936b92f07c1b.tar.gz meson-3c461bcf4fe561dd77ba80420c78936b92f07c1b.tar.bz2 |
compilers: armclang supports only cross-compilation
Revert the change done to Armclang compiler class in PR-4010
-rw-r--r-- | mesonbuild/compilers/compilers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 0a228b4..8ff8f9d 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -2184,7 +2184,7 @@ class ClangCompiler(GnuLikeCompiler): class ArmclangCompiler: def __init__(self, compiler_type): - if self.is_cross: + if not self.is_cross: raise EnvironmentException('armclang supports only cross-compilation.') # Check whether 'armlink.exe' is available in path self.linker_exe = 'armlink.exe' |