Fixing compiler build on OS X (Clang)
diff --git a/compiler/build.gradle b/compiler/build.gradle
index 3f12ad6..0fe03ef 100644
--- a/compiler/build.gradle
+++ b/compiler/build.gradle
@@ -22,7 +22,7 @@
 }
 
 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