blob: 876f0cd638bd2bdb3bebde3d480fed4689bf2bb6 [file] [log] [blame]
def getRoot(config):
if not config.parent:
return config
return getRoot(config.parent)
root = getRoot(config)
if root.target_os not in ["Darwin"]:
config.unsupported = True
config.environment["TSAN_OPTIONS"] += ":ignore_noninstrumented_modules=1"