summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorRyan Egesdahl <ryan.egesdahl@mongodb.com>2020-08-10 15:35:55 -0700
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-10-07 23:01:11 +0000
commit3a3cb2c81939d0acba655890c586351d122673de (patch)
tree32cd5b4b3954fa5b701f3f72e0e1d6bd1651ba4f /SConstruct
parent73dd69d37bc64c58a800c8d1225e35d3ca6241cb (diff)
downloadmongo-3a3cb2c81939d0acba655890c586351d122673de.tar.gz
SERVER-50125 Add sanitizer blacklist files to CCACHE_EXTRAFILES
Some versions of ccache do not know how to handle clang's -fsanitizer-blacklist flags. Some versions don't handle it at all, while others only handle one instance, even though it can appear multiple times on the command line. Because the argument can change the resulting compiled object, not taking the flags into account properly can cause ccache to pull an incorrect object file from its cache. The exact behavior depends on the ccache version and how the arguments are changed on the command line. We implement a workaround suggested by the ccache developers until a newer version of ccache with all the required fixes is in common use. * Workaround ref: https://github.com/ccache/ccache/issues/174 (cherry picked from commit 37276b21f4dbd66f913e8d49577fd4b1c4eafbf9)
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct46
1 files changed, 35 insertions, 11 deletions
diff --git a/SConstruct b/SConstruct
index 5ecc554e6e6..208ebad61d9 100644
--- a/SConstruct
+++ b/SConstruct
@@ -2948,29 +2948,53 @@ def doConfigure(myenv):
supportedBlackfiles = []
blackfilesTestEnv = myenv.Clone()
for blackfile in blackfiles:
- if AddToCCFLAGSIfSupported(blackfilesTestEnv, "-fsanitize-blacklist=%s" % blackfile):
+ if AddToCCFLAGSIfSupported(blackfilesTestEnv, f"-fsanitize-blacklist={blackfile}"):
supportedBlackfiles.append(blackfile)
blackfilesTestEnv = None
- blackfiles = sorted(supportedBlackfiles)
+ supportedBlackfiles = sorted(supportedBlackfiles)
# If we ended up with any blackfiles after the above filters,
# then expand them into compiler flag arguments, and use a
# generator to return at command line expansion time so that
# we can change the signature if the file contents change.
- if blackfiles:
+ if supportedBlackfiles:
# Unconditionally using the full path can affect SCons cached builds, so we only do
# this in cases where we know it's going to matter.
- blackfile_paths = [
- blackfile.get_abspath() if ('ICECC' in env and env['ICECC']) else blackfile.path
- for blackfile in blackfiles
- ]
- # Make these files available to remote icecream builds if requested
- blacklist_options=[f"-fsanitize-blacklist={file_path}" for file_path in blackfile_paths]
- env.AppendUnique(ICECC_CREATE_ENV_ADDFILES=blackfile_paths)
+ if 'ICECC' in env and env['ICECC']:
+ # Make these files available to remote icecream builds if requested.
+ # These paths *must* be absolute to match the paths in the remote
+ # toolchain archive.
+ blacklist_options=[
+ f"-fsanitize-blacklist={blackfile.get_abspath()}"
+ for blackfile in supportedBlackfiles
+ ]
+ # If a sanitizer is in use with a blacklist file, we have to ensure they get
+ # added to the toolchain package that gets sent to the remote hosts so they
+ # can be found by the remote compiler.
+ env.Append(ICECC_CREATE_ENV_ADDFILES=supportedBlackfiles)
+ else:
+ blacklist_options=[
+ f"-fsanitize-blacklist={blackfile.path}"
+ for blackfile in supportedBlackfiles
+ ]
+
+ if 'CCACHE' in env and env['CCACHE']:
+ # Work around the fact that some versions of ccache either don't yet support
+ # -fsanitize-blacklist at all or only support one instance of it. This will
+ # work on any version of ccache because the point is only to ensure that the
+ # resulting hash for any compiled object is guaranteed to take into account
+ # the effect of any sanitizer blacklist files used as part of the build.
+ # TODO: This will no longer be required when the following pull requests/
+ # issues have been merged and deployed.
+ # https://github.com/ccache/ccache/pull/258
+ # https://github.com/ccache/ccache/issues/318
+ env.Append(CCACHE_EXTRAFILES=supportedBlackfiles)
+
def SanitizerBlacklistGenerator(source, target, env, for_signature):
if for_signature:
- return [f.get_csig() for f in blackfiles]
+ return [f.get_csig() for f in supportedBlackfiles]
return blacklist_options
+
myenv.AppendUnique(
SANITIZER_BLACKLIST_GENERATOR=SanitizerBlacklistGenerator,
CCFLAGS="${SANITIZER_BLACKLIST_GENERATOR}",