diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2019-04-20 14:18:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-20 14:18:27 +0300 |
commit | 5c85b5028080e74b3a74f9e0d63166c3c3ca15e6 (patch) | |
tree | dbf4c168c34a1b67fc2f107ebc6aba593a4c66e4 /mesonbuild/compilers/compilers.py | |
parent | bf65660509bcea67b3a25477c89807a673248b08 (diff) | |
parent | 0ec71fff34b3a120b4a688e4dd79a64dd2b0f6a1 (diff) | |
download | meson-5c85b5028080e74b3a74f9e0d63166c3c3ca15e6.zip meson-5c85b5028080e74b3a74f9e0d63166c3c3ca15e6.tar.gz meson-5c85b5028080e74b3a74f9e0d63166c3c3ca15e6.tar.bz2 |
Merge pull request #5284 from makise-homura/update_lcc_support
Update lcc support
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
-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 e29ca55..3459a8f 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1736,7 +1736,7 @@ class ElbrusCompiler(GnuCompiler): # FIXME: use _build_wrapper to call this so that linker flags from the env # get applied - def get_library_dirs(self, env): + def get_library_dirs(self, env, elf_class = None): os_env = os.environ.copy() os_env['LC_ALL'] = 'C' stdo = Popen_safe(self.exelist + ['--print-search-dirs'], env=os_env)[1] |