Home | History | Annotate | Download | only in ARM
      1 //===- ARMAndroidSectLinker.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 ARM_ANDROIDSECTLINKER_H
     11 #define ARM_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 MCLDInfo;
     21 
     22 /** \class ARMAndroidSectLinker
     23  *  \brief ARMAndroidSectLinker sets up the environment for linking.
     24  *
     25  *  \see
     26  *  \author Anders Cheng <Anders.Cheng (at) mediatek.com>
     27  */
     28 class ARMAndroidSectLinker : public AndroidSectLinker
     29 {
     30 public:
     31   ARMAndroidSectLinker(SectLinkerOption &pOption,
     32                        mcld::TargetLDBackend &pLDBackend);
     33 
     34   ~ARMAndroidSectLinker();
     35 };
     36 
     37 } // namespace of mcld
     38 
     39 #endif
     40 
     41