diff --git a/shake-language-c.cabal b/shake-language-c.cabal
--- a/shake-language-c.cabal
+++ b/shake-language-c.cabal
@@ -1,11 +1,11 @@
 -- Copyright 2012-2014 Samplecount S.L.
--- 
+--
 -- Licensed under the Apache License, Version 2.0 (the "License");
 -- you may not use this file except in compliance with the License.
 -- You may obtain a copy of the License at
--- 
+--
 --     http://www.apache.org/licenses/LICENSE-2.0
--- 
+--
 -- Unless required by applicable law or agreed to in writing, software
 -- distributed under the License is distributed on an "AS IS" BASIS,
 -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@@ -13,7 +13,7 @@
 -- limitations under the License.
 
 Name:         shake-language-c
-Version:      0.8.1
+Version:      0.8.2
 Synopsis:     Utilities for cross-compiling with Shake
 Description:  This library provides <http://hackage.haskell.org/package/shake Shake> utilities for cross-compiling @C@, @C++@ and @ObjC@ code for various target platforms. Currently supported target platforms are Android, iOS, Linux, MacOS X, Windows\/MinGW and Google Portable Native Client (PNaCl). Supported host platforms are MacOS X, Linux and Windows.
 Category:     Development
diff --git a/src/Development/Shake/Language/C/Target/Linux.hs b/src/Development/Shake/Language/C/Target/Linux.hs
--- a/src/Development/Shake/Language/C/Target/Linux.hs
+++ b/src/Development/Shake/Language/C/Target/Linux.hs
@@ -59,8 +59,8 @@
   $ defaultToolChain
 toolChain LLVM =
     set variant LLVM
-  $ set compilerCommand "gcc"
+  $ set compilerCommand "clang"
   $ set archiverCommand "ar"
-  $ set linkerCommand "g++"
+  $ set linkerCommand "clang++"
   $ defaultToolChain
 toolChain Generic = toolChain GCC
