diff options
author | Daniel Wirtz <dcode@dcode.io> | 2020-09-08 19:25:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-08 10:25:30 -0700 |
commit | cdd069b464c3c70c121398d8e3ae03cbe20b653b (patch) | |
tree | 46be0905bfa0d322ef382fe116a0d18b9f39ef6a /scripts/test | |
parent | 4a8d1abc61e657436616203a75935b3df8af515b (diff) | |
download | binaryen-cdd069b464c3c70c121398d8e3ae03cbe20b653b.tar.gz binaryen-cdd069b464c3c70c121398d8e3ae03cbe20b653b.tar.bz2 binaryen-cdd069b464c3c70c121398d8e3ae03cbe20b653b.zip |
Stay on C++14 for now (#3108)
Switch us back to C++ standard support to 14 (for now), so we can easily upgrade
again once the autoroller issues are resolved (atm the chromium roller does not
have a libc++ with c++17 support).
Diffstat (limited to 'scripts/test')
-rw-r--r-- | scripts/test/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/test/shared.py b/scripts/test/shared.py index fac64c5d2..ace68c3ee 100644 --- a/scripts/test/shared.py +++ b/scripts/test/shared.py @@ -25,7 +25,7 @@ import sys # The C++ standard whose features are required to build Binaryen. # Keep in sync with CMakeLists.txt CXX_STANDARD -cxx_standard = 17 +cxx_standard = 14 def parse_args(args): |