diff options
| author | Dylan Baker <dylan@pnwbakers.com> | 2025-11-13 11:30:51 -0800 |
|---|---|---|
| committer | Dylan Baker <dylan@pnwbakers.com> | 2025-11-19 10:48:48 -0800 |
| commit | 37cbcf98092d17f69e035dced79097e1acf56919 (patch) | |
| tree | 5120ea4e5066bdbe5248ba283e050a31ed1fcbad /unittests/linuxliketests.py | |
| parent | cdbbeace6af10ef9b006d40d016e029837101161 (diff) | |
| download | meson-37cbcf98092d17f69e035dced79097e1acf56919.tar.gz | |
compilers: Remove Environment parameter from CLikeCompiler.gen_dynamic_link_args
Diffstat (limited to 'unittests/linuxliketests.py')
| -rw-r--r-- | unittests/linuxliketests.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittests/linuxliketests.py b/unittests/linuxliketests.py index 15bb36b91..a97a1f106 100644 --- a/unittests/linuxliketests.py +++ b/unittests/linuxliketests.py @@ -1523,7 +1523,7 @@ class LinuxlikeTests(BasePlatformTests): env = get_fake_env() cc = detect_c_compiler(env, MachineChoice.HOST) linker = cc.linker - if not linker.export_dynamic_args(env): + if not linker.export_dynamic_args(): raise SkipTest('Not applicable for linkers without --export-dynamic') self.init(testdir) build_ninja = os.path.join(self.builddir, 'build.ninja') |
