Update libclangext/build.gradle (#4024)

Fixes issue #4016
This commit is contained in:
Campbell Jones
2020-03-26 04:57:29 -04:00
committed by GitHub
parent 070ad452b5
commit 76b0e42de4
+1 -1
View File
@@ -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'
}