Skip to content

Commit

Permalink
Merge pull request #5035 from fwyzard/unsupported-fdebug-prefix-map
Browse files Browse the repository at this point in the history
add -fdebug-prefix-map to the unsupported options
  • Loading branch information
ktf committed Aug 25, 2014
2 parents 7450a12 + dc484e7 commit a72ba3e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -467,7 +467,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')) ]
flags = [ flag for flag in flagsIn if not flag.startswith(('-march', '-mtune', '-fdebug-prefix-map')) ]
blackList = ['--', '-fipa-pta']
return [x for x in flags if x not in blackList]

Expand Down

0 comments on commit a72ba3e

Please sign in to comment.