blob: ba216e4f37592a33a9c137d3f5b4a2d75ce3e762 [file] [log] [blame]
//===- MipsAndroidSectLinker.h --------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef MIPS_ANDROIDSECTLINKER_H
#define MIPS_ANDROIDSECTLINKER_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include "mcld/Target/AndroidSectLinker.h"
namespace mcld
{
/** \class MipsAndroidSectLinker
* \brief MipsAndroidSectLinker sets up the environment for linking.
*
*/
class MipsAndroidSectLinker : public AndroidSectLinker
{
public:
MipsAndroidSectLinker(SectLinkerOption &pOption,
mcld::TargetLDBackend &pLDBackend);
~MipsAndroidSectLinker();
};
} // namespace of mcld
#endif