/*************************************************************************** * Copyright (C) 2006 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 "boost.h" #include "boostc_compile.h" #include "boost_config.h" #include "devices/pic/pic/pic_memory.h" #include "devices/list/device_list.h" #include "devices/base/device_group.h" //---------------------------------------------------------------------------- bool Boost::Linker::checkExecutableResult(bool, TQStringList &lines) const { return ( lines.count()>0 && lines[0].startsWith("BoostLink ") ); } PURL::Directory Boost::Linker::checkExecutableWorkingDirectory() const { return static_cast(_group)->checkExecutableUrl().directory(); } TQStringList Boost::Linker16::checkExecutableOptions(bool) const { // #### otherwise may stall... TQStringList args; args += "-t PIC16F873"; args += static_cast(_group)->checkExecutableUrl().toExtension("obj").filename(); return args; } TQStringList Boost::Linker18::checkExecutableOptions(bool) const { // #### otherwise may stall... TQStringList args; args += "-t PIC18F452"; args += static_cast(_group)->checkExecutableUrl().toExtension("obj").filename(); return args; } //---------------------------------------------------------------------------- TQStringList Boost::Compiler::checkExecutableOptions(bool) const { // #### otherwise may stall... return static_cast(_group)->checkExecutableUrl().filename(); } PURL::Directory Boost::Compiler::checkExecutableWorkingDirectory() const { return static_cast(_group)->checkExecutableUrl().directory(); } //---------------------------------------------------------------------------- Boost::Group::Group(const TQString &extension, const TQString &text) : _checkExecTmp(_sview, extension) { if ( _checkExecTmp.openForWrite() ) _checkExecTmp.appendText(text); _checkExecTmp.close(); } TQString Boost::Group::comment() const { return i18n("The Boost toolchain needs to be run by Wine with \"Windows NT 4.0\" compatibility. This can be configured with the Wine configuration utility."); } PURL::Directory Boost::Group::autodetectDirectory(Compile::DirectoryType type, const PURL::Directory &execDir, bool) const { if ( type==Compile::DirectoryType::Library ) return execDir.path() + "Lib"; return PURL::Directory(); } Compile::Process *Boost::Group::processFactory(const Compile::Data &data) const { switch (data.category.type()) { case Tool::Category::Compiler: return new Boost::CompileFile; case Tool::Category::Linker: return new Boost::Link; default: break; } Q_ASSERT(false); return 0; } Compile::Config *Boost::Group::configFactory(::Project *project) const { return new Boost::Config(project); } TQValueList Boost::Group::getSupportedDevices(const TQString &) const { TQValueList list; TQValueVector devices = Device::lister().group("pic")->supportedDevices(); for (uint i=0; i(data)->architecture()) ) list.append(data); } return list; }