Fixing compiler build on OS X (Clang)

This commit is contained in:
nmittler 2015-01-30 14:55:38 -08:00
parent e5269899b7
commit f12996086b
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ dependencies {
}
binaries.all {
if (toolChain in Gcc) {
if (toolChain in Gcc || toolChain in Clang) {
cppCompiler.args "-std=c++11"
if (System.env.CXXFLAGS) {
cppCompiler.args System.env.CXXFLAGS