]> git.tdb.fi Git - builder.git/blob - source/clangcompiler.cpp
7ad47ed45986b55f2ba7f81fa76eae7c75a7b91b
[builder.git] / source / clangcompiler.cpp
1 #include "clangcompiler.h"
2
3 using namespace std;
4 using namespace Msp;
5
6 ClangCompiler::ClangCompiler(Builder &b, const Architecture &a, const string &t, const FS::Path &r):
7         GnuCompiler(b, a, t, r)
8 {
9         set_command((tag=="CXX" ? "clang++" : "clang"), true);
10 }