X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fgnulinker.cpp;h=56becc2c42ef0f6f9f32f30f7ba910213a077212;hb=5e00719d0c63e306786ff36df61797cdbc86f3e9;hp=72c8b07a423a08bacc1e2238fc9354ba70a10230;hpb=82c7d6187fdaeaa1b9cfbd6637d9b047a78f17ec;p=builder.git diff --git a/source/gnulinker.cpp b/source/gnulinker.cpp index 72c8b07..56becc2 100644 --- a/source/gnulinker.cpp +++ b/source/gnulinker.cpp @@ -111,7 +111,7 @@ void GnuLinker::do_prepare() if(!sysroot.empty()) argv.push_back("--sysroot="+sysroot.str()); - 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); @@ -138,7 +138,7 @@ void GnuLinker::do_prepare() } path /= output.substr(search_dir, end-search_dir); - 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); path_found = true; @@ -152,7 +152,7 @@ void GnuLinker::do_prepare() 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/lib"); else if(architecture->is_native())