Implement get_link_whole_for() for IntelCompiler (#3863)

closes #3862
pull/3871/head
Alberto Sartori 6 years ago committed by Nirbheek Chauhan
parent 47c68a5993
commit 8bee30367e
  1. 3
      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.

Loading…
Cancel
Save