X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucxxcompiler.cpp;h=cadd21f026989df463412668a672b182d188bf5c;hb=19a821ee581f0fe60860627472cc59065247bf13;hp=8084a03e8201cbdaa00ee9db8e5a34f104e980a9;hpb=338eefb513953ae55e8e3614c009c242ba8ad74e;p=builder.git diff --git a/source/gnucxxcompiler.cpp b/source/gnucxxcompiler.cpp index 8084a03..cadd21f 100644 --- a/source/gnucxxcompiler.cpp +++ b/source/gnucxxcompiler.cpp @@ -1,8 +1,60 @@ +#include +#include +#include +#include +#include "builder.h" +#include "csourcefile.h" +#include "externaltask.h" #include "gnucxxcompiler.h" +using namespace std; +using namespace Msp; + GnuCxxCompiler::GnuCxxCompiler(Builder &b): GnuCompiler(b, "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("--version"); + builder.get_logger().log("auxcommands", format("Running %s", join(argv.begin(), argv.end()))); + ExternalTask task(argv); + task.set_stdout(ExternalTask::CAPTURE); + task.set_stderr(ExternalTask::IGNORE); + task.start(); + Task::Status status; + while((status=task.check())==Task::RUNNING) ; + if(status==Task::SUCCESS) + if(RegMatch m = Regex("[0-9]\\.[0-9.]+").match(task.get_output())) + { + string cxx_ver = m[0].str; + while(!cxx_ver.empty()) + { + 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)); + system_path.push_back(cxx_path); + break; + } + + string::size_type dot = cxx_ver.rfind('.'); + if(dot==string::npos) + break; + cxx_ver.erase(dot); + } + } +} + +Target *GnuCxxCompiler::create_source(const Component &comp, const FS::Path &path) const +{ + return new CSourceFile(builder, comp, path); +} + +Target *GnuCxxCompiler::create_source(const FS::Path &path) const +{ + return new CSourceFile(builder, path); }