From 5c50f678982e56c64df86cfe676e023f7765b7d2 Mon Sep 17 00:00:00 2001 From: Dr!fter Date: Sun, 26 Jun 2016 13:18:18 -0400 Subject: [PATCH] Fix linux buildbot --- buildbot/bootstrap.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildbot/bootstrap.pl b/buildbot/bootstrap.pl index e9d0263..d574d68 100644 --- a/buildbot/bootstrap.pl +++ b/buildbot/bootstrap.pl @@ -29,7 +29,7 @@ my ($result); #configure AMBuild if ($^O eq "linux") { - $result = `CC=clang CXX=clang python ../build/configure.py --enable-optimize`; + $result = `CC=clang-3.8 CXX=clang-3.8 python ../build/configure.py --enable-optimize`; } elsif ($^O eq "darwin") { $result = `CC=clang CXX=clang python ../build/configure.py --enable-optimize`; } else {