| Index: infra/bots/recipe_modules/vars/api.py
|
| diff --git a/infra/bots/recipe_modules/vars/api.py b/infra/bots/recipe_modules/vars/api.py
|
| index 897a85a7fc911794decc831656e57e3f44bdace9..092c3e62b7184409eda510f85f5cd236d7c583b3 100644
|
| --- a/infra/bots/recipe_modules/vars/api.py
|
| +++ b/infra/bots/recipe_modules/vars/api.py
|
| @@ -151,12 +151,7 @@ def get_gyp_defines(builder_dict):
|
|
|
| def get_extra_env_vars(builder_dict):
|
| env = {}
|
| - if builder_dict.get('configuration') == 'Coverage':
|
| - # We have to use Clang 3.6 because earlier versions do not support the
|
| - # compile flags we use and 3.7 and 3.8 hit asserts during compilation.
|
| - env['CC'] = '/usr/bin/clang-3.6'
|
| - env['CXX'] = '/usr/bin/clang++-3.6'
|
| - elif builder_dict.get('compiler') == 'Clang':
|
| + if builder_dict.get('compiler') == 'Clang':
|
| env['CC'] = '/usr/bin/clang'
|
| env['CXX'] = '/usr/bin/clang++'
|
|
|
|
|