diff options
| author | makise-homura <akemi_homura@kurisa.ch> | 2020-01-13 17:11:20 +0300 |
|---|---|---|
| committer | makise-homura <akemi_homura@kurisa.ch> | 2020-01-27 22:35:26 +0300 |
| commit | 7321cc776afb313326e6cb1596527ef04af9aedb (patch) | |
| tree | cf73799771d118b036ccc069e6171b43e12d82c2 /mesonbuild/compilers/mixins/elbrus.py | |
| parent | a493761d89d87e06e787492ba7f9685df6578902 (diff) | |
| download | meson-7321cc776afb313326e6cb1596527ef04af9aedb.tar.gz | |
Fix missing 'defines' argumet for Elbrus compiler
...But somehow it still remains in C++ compiler.
Diffstat (limited to 'mesonbuild/compilers/mixins/elbrus.py')
| -rw-r--r-- | mesonbuild/compilers/mixins/elbrus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/compilers/mixins/elbrus.py b/mesonbuild/compilers/mixins/elbrus.py index 87bf52a2f..1420474f3 100644 --- a/mesonbuild/compilers/mixins/elbrus.py +++ b/mesonbuild/compilers/mixins/elbrus.py @@ -29,7 +29,7 @@ if T.TYPE_CHECKING: class ElbrusCompiler(GnuLikeCompiler): # Elbrus compiler is nearly like GCC, but does not support # PCH, LTO, sanitizers and color output as of version 1.21.x. - def __init__(self, defines: T.Dict[str, str]): + def __init__(self): super().__init__() self.id = 'lcc' self.base_options = ['b_pgo', 'b_coverage', |
