X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucompiler.cpp;h=3236631d756d69b10a0fc0172b4f580972d0a863;hb=edd4771292a2273080fbcbac266c6831834b0b86;hp=4ee09ed5d97593c74c1130d509337ddec39b2ad0;hpb=c5942a5c2fe7677a77b88254ee874bc09a5aa725;p=builder.git diff --git a/source/gnucompiler.cpp b/source/gnucompiler.cpp index 4ee09ed..3236631 100644 --- a/source/gnucompiler.cpp +++ b/source/gnucompiler.cpp @@ -6,7 +6,6 @@ #include "builder.h" #include "component.h" #include "csourcefile.h" -#include "externaltask.h" #include "gnucompiler.h" #include "objcsourcefile.h" #include "objectfile.h" @@ -50,7 +49,7 @@ GnuCompiler::GnuCompiler(Builder &b, const Architecture &a, const string &t): throw invalid_argument("GnuCompiler::GnuCompiler"); set_command((tag=="CXX" ? "g++" : "gcc"), true); - set_run(_run); + set_run_external(_run); } Target *GnuCompiler::create_source(const Component &comp, const FS::Path &path) const @@ -107,6 +106,9 @@ void GnuCompiler::do_prepare(ToolData &tool) const tool.extra_data = 0U; prepare_syspath(tool); prepare_version(tool); + + if(tag=="CXX") + tool.build_info.libs.push_back("stdc++"); } void GnuCompiler::prepare_syspath(ToolData &tool) const @@ -195,23 +197,22 @@ unsigned GnuCompiler::query_version(const string &exe_path, const string &arg) c argv.push_back(arg); builder.get_logger().log("auxcommands", "Running %s", join(argv.begin(), argv.end())); + unsigned ver = 0; try { string version_str = strip(ExternalTask::run_and_capture_output(argv)); vector version_parts = split(version_str, '.'); - unsigned ver = 0; for(unsigned i=0; (i<3 && i(version_parts[i])<<(16-8*i); - return ver; } catch(const runtime_error &) { } - return 0; + return ver; } -Task *GnuCompiler::_run(const ObjectFile &object) +ExternalTask::Arguments GnuCompiler::_run(const ObjectFile &object, FS::Path &work_dir) { const Tool &tool = *object.get_tool(); const Architecture &arch = *tool.get_architecture(); @@ -343,11 +344,10 @@ Task *GnuCompiler::_run(const ObjectFile &object) FS::Path obj_path = object.get_path(); FS::Path src_path = object.get_source().get_path(); - FS::Path work_dir = object.get_component()->get_package().get_source_directory(); argv.push_back("-o"); argv.push_back(relative(obj_path, work_dir).str()); argv.push_back(relative(src_path, work_dir).str()); - return new ExternalTask(argv, work_dir); + return argv; }