blob: ef83156d9a2b9da803be4923b790dae09582838a [file] [log] [blame]
//===- ARMELFDynamic.h ----------------------------------------------------===//
//
// The MCLinker Project
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef TARGET_ARM_ARMELFDYNAMIC_H
#define TARGET_ARM_ARMELFDYNAMIC_H
#ifdef ENABLE_UNITTEST
#include <gtest.h>
#endif
#include <mcld/Target/ELFDynamic.h>
namespace mcld {
class ARMELFDynamic : public ELFDynamic {
public:
ARMELFDynamic(const GNULDBackend& pParent, const LinkerConfig& pConfig);
~ARMELFDynamic();
private:
void reserveTargetEntries(const ELFFileFormat& pFormat);
void applyTargetEntries(const ELFFileFormat& pFormat);
};
} // namespace of mcld
#endif