1 //===- X86AndroidSectLinker.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 10 #ifndef X86_ANDROIDSECTLINKER_H 11 #define X86_ANDROIDSECTLINKER_H 12 #ifdef ENABLE_UNITTEST 13 #include <gtest.h> 14 #endif 15 #include <mcld/Target/AndroidSectLinker.h> 16 17 namespace mcld 18 { 19 20 /** \class X86AndroidSectLinker 21 * \brief X86AndroidSectLinker sets up the environment for linking. 22 * 23 * \see 24 * \author Anders Cheng <Anders.Cheng (at) mediatek.com> 25 */ 26 class X86AndroidSectLinker : public AndroidSectLinker 27 { 28 public: 29 X86AndroidSectLinker(SectLinkerOption &pOption, 30 mcld::TargetLDBackend &pLDBackend); 31 32 ~X86AndroidSectLinker(); 33 }; 34 35 } // namespace of mcld 36 37 #endif 38 39