From 76b0e42de44ac5fde496a3f9ee53c279440fa60c Mon Sep 17 00:00:00 2001 From: Campbell Jones Date: Thu, 26 Mar 2020 04:57:29 -0400 Subject: [PATCH] Update libclangext/build.gradle (#4024) Fixes issue #4016 --- libclangext/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libclangext/build.gradle b/libclangext/build.gradle index 0dd79e3dd1e..dd5dd3c356d 100644 --- a/libclangext/build.gradle +++ b/libclangext/build.gradle @@ -42,7 +42,7 @@ model { binaries.withType(StaticLibraryBinarySpec) { binary -> if (!project.parent.convention.plugins.platformInfo.isWindows()) cppCompiler.args "-fPIC" - cppCompiler.args "--std=c++14", "-g", "-I${llvmDir}/include" + cppCompiler.args "--std=c++11", "-g", "-I${llvmDir}/include" if (isEnabled) { cppCompiler.args '-DLIBCLANGEXT_ENABLE=1' }