]> git.tdb.fi Git - builder.git/blob - source/clangcompiler.cpp
Clean up compiler and linker constructors
[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):
7         GnuCompiler(b, a, t)
8 {
9         set_command((tag=="CXX" ? "clang++" : "clang"), true);
10 }