diff options
author | Gennadiy Civil <misterg@google.com> | 2018-09-25 14:22:11 -0400 |
---|---|---|
committer | Gennadiy Civil <misterg@google.com> | 2018-09-25 14:22:11 -0400 |
commit | ecbcd99c4f00aecfb93743ffdfbffade6abd5a85 (patch) | |
tree | 493a3d671cfe1942ae18b423083801bcf634557e /ci | |
parent | 70de02bf2cfb46ad65e275b89de6dc0eeadbc183 (diff) | |
download | googletest-ecbcd99c4f00aecfb93743ffdfbffade6abd5a85.tar.gz googletest-ecbcd99c4f00aecfb93743ffdfbffade6abd5a85.tar.bz2 googletest-ecbcd99c4f00aecfb93743ffdfbffade6abd5a85.zip |
include c++11 for autotools
Diffstat (limited to 'ci')
-rwxr-xr-x | ci/build-linux-autotools.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/build-linux-autotools.sh b/ci/build-linux-autotools.sh index cc404e9b..28d70446 100755 --- a/ci/build-linux-autotools.sh +++ b/ci/build-linux-autotools.sh @@ -41,4 +41,4 @@ mkdir build || true cd build ../configure -make -j ${NPROCESSORS:-2} +make -j -std=c++11 {NPROCESSORS:-2} |