Skip to content

Commit

Permalink
Merge pull request #14503 from davidlt/fix-serial-boost-icc
Browse files Browse the repository at this point in the history
Ignore ICC specific flags (-ax*, -wd*)
  • Loading branch information
davidlt committed May 14, 2016
2 parents 9c73772 + 98ba31a commit 3a84333
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -478,7 +478,7 @@ def _join_package_path(self, *path):
return os.path.join(self.cmssw_base, self.split_path[0], self.split_path[1], self.split_path[2], *path)

def cleanFlags(self, flagsIn):
flags = [ flag for flag in flagsIn if not flag.startswith(('-march', '-mtune', '-fdebug-prefix-map')) ]
flags = [ flag for flag in flagsIn if not flag.startswith(('-march', '-mtune', '-fdebug-prefix-map', '-ax', '-wd')) ]
blackList = ['--', '-fipa-pta']
return [x for x in flags if x not in blackList]

Expand Down

0 comments on commit 3a84333

Please sign in to comment.