X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnucompiler.cpp;h=b8b25152e70acfce73e0c9f9e313daf8460f3979;hb=5e00719d0c63e306786ff36df61797cdbc86f3e9;hp=9e7eb390220d451dabac88c0a971ba698c095e97;hpb=aa053d637e8259755af7d2e4b510a242f4d29c7b;p=builder.git diff --git a/source/gnucompiler.cpp b/source/gnucompiler.cpp index 9e7eb39..b8b2515 100644 --- a/source/gnucompiler.cpp +++ b/source/gnucompiler.cpp @@ -126,7 +126,7 @@ void GnuCompiler::prepare_syspath() argv.push_back("--sysroot="+sysroot.str()); argv.push_back("-"); - builder.get_logger().log("auxcommands", format("Running %s", join(argv.begin(), argv.end()))); + builder.get_logger().log("auxcommands", "Running %s", join(argv.begin(), argv.end())); try { string output = ExternalTask::run_and_capture_output(argv, FS::Path(), true); @@ -145,7 +145,7 @@ void GnuCompiler::prepare_syspath() else if(record_path) { FS::Path path = strip(output.substr(start, newline-start)); - builder.get_logger().log("tools", format("Got %s system path: %s", tag, path)); + builder.get_logger().log("tools", "Got %s system path: %s", tag, path); system_path.push_back(path); } start = newline+1; @@ -157,7 +157,7 @@ void GnuCompiler::prepare_syspath() if(!path_found) { - builder.get_logger().log("tools", format("No %s system path found, using defaults", tag)); + builder.get_logger().log("tools", "No %s system path found, using defaults", tag); if(!sysroot.empty()) system_path.push_back(sysroot/"usr/include"); else if(architecture->is_native()) @@ -175,7 +175,7 @@ void GnuCompiler::prepare_version() prepare_version("-dumpversion"); if(version>=0x70000) prepare_version("-dumpfullversion"); - builder.get_logger().log("tools", format("%s version is %d.%d.%d", FS::basename(executable->get_path()), version>>16, (version>>8)&0xFF, version&0xFF)); + builder.get_logger().log("tools", "%s version is %d.%d.%d", FS::basename(executable->get_path()), version>>16, (version>>8)&0xFF, version&0xFF); } void GnuCompiler::prepare_version(const string &arg) @@ -184,7 +184,7 @@ void GnuCompiler::prepare_version(const string &arg) argv.push_back(executable->get_path().str()); argv.push_back(arg); - builder.get_logger().log("auxcommands", format("Running %s", join(argv.begin(), argv.end()))); + builder.get_logger().log("auxcommands", "Running %s", join(argv.begin(), argv.end())); try { string version_str = strip(ExternalTask::run_and_capture_output(argv));