diff options
author | Andrew Morrow <acm@mongodb.com> | 2020-05-06 09:54:29 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-06-04 18:31:55 +0000 |
commit | 642a530878d2b7f929bedf9d93cf0ee23d05ccfa (patch) | |
tree | d709746f76d7bcb16364a7835cbc4e00cb846342 /SConstruct | |
parent | bb3552868ac0c0698d83cb905db5f9667c26f10f (diff) | |
download | mongo-642a530878d2b7f929bedf9d93cf0ee23d05ccfa.tar.gz |
SERVER-41674 Make hygienic builds the default
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 3791f15aa1e..c3708db9117 100644 --- a/SConstruct +++ b/SConstruct @@ -135,7 +135,7 @@ add_option('lint-scope', add_option('install-mode', choices=['legacy', 'hygienic'], - default='legacy', + default='hygienic', help='select type of installation', nargs=1, type='choice', @@ -2210,7 +2210,7 @@ def doConfigure(myenv): } """ % compiler_minimum_string) elif myenv.ToolchainIs('clang'): - compiler_minimum_string = "clang 7.0 (or Apple XCode 10.0)" + compiler_minimum_string = "clang 7.0 (or Apple XCode 10.2)" compiler_test_body = textwrap.dedent( """ #if !defined(__clang__) |