X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucxxcompiler.cpp;h=c3be0bc61272b70b26f463dde447fad109613fc4;hb=d66acc8fb6b17f1f966838a5266a04be551a284e;hp=cadd21f026989df463412668a672b182d188bf5c;hpb=37ba195304d671390d3e11ebe1bf4c3b2298841b;p=builder.git diff --git a/source/gnucxxcompiler.cpp b/source/gnucxxcompiler.cpp index cadd21f..c3be0bc 100644 --- a/source/gnucxxcompiler.cpp +++ b/source/gnucxxcompiler.cpp @@ -1,4 +1,5 @@ #include +#include #include #include #include @@ -10,15 +11,15 @@ using namespace std; using namespace Msp; -GnuCxxCompiler::GnuCxxCompiler(Builder &b): - GnuCompiler(b, "CXX", "g++") +GnuCxxCompiler::GnuCxxCompiler(Builder &b, const Architecture &a): + GnuCompiler(b, a, "CXX", "g++") { input_suffixes.push_back(".cpp"); input_suffixes.push_back(".cc"); aux_suffixes.push_back(".hpp"); ExternalTask::Arguments argv; - argv.push_back(name); + argv.push_back(executable->get_path().str()); argv.push_back("--version"); builder.get_logger().log("auxcommands", format("Running %s", join(argv.begin(), argv.end()))); ExternalTask task(argv); @@ -36,7 +37,7 @@ GnuCxxCompiler::GnuCxxCompiler(Builder &b): FS::Path cxx_path = FS::Path("/usr/include/c++")/cxx_ver; if(FS::is_dir(cxx_path)) { - builder.get_logger().log("tools", format("%s version is %s", name, cxx_ver)); + builder.get_logger().log("tools", format("%s version is %s", FS::basename(executable->get_path()), cxx_ver)); system_path.push_back(cxx_path); break; }