1 //===- MipsELFSectLinker.h ------------------------------------------------===// 2 // 3 // The MCLinker Project 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 #ifndef MIPS_ELFSECTLINKER_H 10 #define MIPS_ELFSECTLINKER_H 11 #ifdef ENABLE_UNITTEST 12 #include <gtest.h> 13 #endif 14 #include <mcld/CodeGen/SectLinker.h> 15 16 namespace mcld 17 { 18 19 /** \class MipsELFSectLinker 20 * \brief MipsELFSectLinker sets up the environment for linking. 21 */ 22 class MipsELFSectLinker : public SectLinker 23 { 24 public: 25 MipsELFSectLinker(SectLinkerOption &pOption, 26 mcld::TargetLDBackend &pLDBackend); 27 28 ~MipsELFSectLinker(); 29 }; 30 31 } // namespace of mcld 32 33 #endif 34