]> git.tdb.fi Git - builder.git/blobdiff - source/clangcompiler.cpp
Use CustomizedTool for tools which derive from other tools
[builder.git] / source / clangcompiler.cpp
index f0ab93916a8a91c24a2c7b4ae1740ec367189ea6..bcd73d1b151e1c23829067e977502ba85f919623 100644 (file)
@@ -4,7 +4,7 @@ using namespace std;
 using namespace Msp;
 
 ClangCompiler::ClangCompiler(Builder &b, const Architecture &a, const string &t):
-       GnuCompiler(b, a, t)
+       CustomizedTool(b, t, a)
 {
        set_command((tag=="CXX" ? "clang++" : "clang"), true);
 }