diff options
Diffstat (limited to 'src/tools/c18/c18_compile.cpp')
-rw-r--r-- | src/tools/c18/c18_compile.cpp | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/tools/c18/c18_compile.cpp b/src/tools/c18/c18_compile.cpp new file mode 100644 index 0000000..181da36 --- /dev/null +++ b/src/tools/c18/c18_compile.cpp @@ -0,0 +1,65 @@ +/*************************************************************************** + * Copyright (C) 2006 Nicolas Hadacek <hadacek@kde.org> * + * * + * 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 "c18_compile.h" + +#include "c18_config.h" +#include "c18.h" +#include "devices/list/device_list.h" + +//----------------------------------------------------------------------------- +QStringList C18::CompileFile::genericArguments(const Compile::Config &config) const +{ + QStringList args; + args += config.includeDirs(Tool::Category::Compiler, "-I"); + args += "-I" + Compile::Config::directory(group(), Compile::DirectoryType::Header).path(); + args += "$NO_AUTO_DEVICE(-p)"; + args += "$NO_AUTO_DEVICE(%DEVICE)"; + args += config.customOptions(Tool::Category::Compiler); + args += "-fo=%OBJECT"; + args += "%I"; + return args; +} + +QString C18::CompileFile::outputFiles() const +{ + return "PURL::Object"; +} + +void C18::CompileFile::logStderrLine(const QString &line) +{ + // #### TODO + doLog(Log::LineType::Normal, line, QString::null, 0); +} + +//----------------------------------------------------------------------------- +QStringList C18::Link::genericArguments(const Compile::Config &config) const +{ + QStringList args; + args += "/k%LKR_PATH"; + args += "%LKR_NAME"; + args += "/l" + Compile::Config::directory(group(), Compile::DirectoryType::Library).path(); + args += config.customOptions(Tool::Category::Linker); + args += "/o%COFF"; + args += "/m%MAP"; + args += "%OBJS"; + args += "%LIBS"; + args += config.customLibraries(Tool::Category::Linker); + return args; +} + +QString C18::Link::outputFiles() const +{ + return "PURL::Lkr PURL::Map PURL::Hex PURL::Coff PURL::Lst PURL::Cod"; +} + +void C18::Link::logStderrLine(const QString &line) +{ + // #### TODO + doLog(Log::LineType::Normal, line, QString::null, 0); +} |