From 8bee30367e29c144b223c00a94754664732f6019 Mon Sep 17 00:00:00 2001 From: Alberto Sartori Date: Tue, 10 Jul 2018 22:23:51 +0200 Subject: Implement get_link_whole_for() for IntelCompiler (#3863) closes #3862 --- mesonbuild/compilers/compilers.py | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mesonbuild/compilers/compilers.py') diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 21aab11..25835a3 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -1561,6 +1561,9 @@ class IntelCompiler: else: return ['-openmp'] + def get_link_whole_for(self, args): + return GnuCompiler.get_link_whole_for(self, args) + class ArmCompiler: # Functionality that is common to all ARM family compilers. -- cgit v1.1