diff options
author | Alberto Sartori <alberto.sartori86@gmail.com> | 2018-07-10 22:23:51 +0200 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-07-10 13:23:51 -0700 |
commit | 8bee30367e29c144b223c00a94754664732f6019 (patch) | |
tree | 4ca23f162788a1212a1d6166e93aefe04a4a923c | |
parent | 47c68a59938c927b3879ecc0e237c2af0156e35a (diff) | |
download | meson-8bee30367e29c144b223c00a94754664732f6019.zip meson-8bee30367e29c144b223c00a94754664732f6019.tar.gz meson-8bee30367e29c144b223c00a94754664732f6019.tar.bz2 |
Implement get_link_whole_for() for IntelCompiler (#3863)
closes #3862
-rw-r--r-- | mesonbuild/compilers/compilers.py | 3 |
1 files changed, 3 insertions, 0 deletions
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. |