/*************************************************************************** * Copyright (C) 2007 Nicolas Hadacek * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * ***************************************************************************/ #include "mpc_compile.h" #include "common/global/pfile.h" #include "mpc_config.h" #include "devices/list/device_list.h" #include "devices/pic/base/pic.h" TQStringList MPC::CompileFile::genericArguments(const Compile::Config &) const { TQStringList args; args += "%I"; return args; } void MPC::CompileFile::logStderrLine(const TQString &) { // ignore output } void MPC::CompileFile::parseLine(const TQString &line) { if ( parseErrorLine(line, Compile::ParseErrorData("(\\w+)\\s+(.*)\\s+(\\d+):\\d+:(.*)", 2, 3, 4, 1)) ) return; doLog(Log::LineType::Normal, line, TQString(), 0); // unrecognized } void MPC::CompileFile::done(int code) { // rely on error file PURL::Url url = PURL::Url(directory(), inputFilepath(0)).toExtension("err"); Log::StringView sview; PURL::File file(url, sview); if ( !file.openForRead() ) doLog(Log::LineType::Error, i18n("Could not find error file (%1).").tqarg(url.pretty()), TQString(), 0); else { TQStringList lines = file.readLines(); for (uint i=0; i