Skip to content

Commit 69e2881

Browse files
author
Chad Rosier
committedAug 13, 2014
[AArch64] Initial ELF/AArch64 Support
This patch adds the initial ELF/AArch64 support to lld. Only a basic "Hello World" app has been successfully tested for both dynamic and static compiling. Differential Revision: http://reviews.llvm.org/D4778 Patch by Daniel Stewart <stewartd@codeaurora.org>! llvm-svn: 215544
1 parent b4e7c9b commit 69e2881

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+1837
-5
lines changed
 

‎lld/docs/open_projects.rst

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Open Projects
77
.. include:: ../lib/Core/TODO.txt
88
.. include:: ../lib/Driver/TODO.rst
99
.. include:: ../lib/ReaderWriter/ELF/X86_64/TODO.rst
10+
.. include:: ../lib/ReaderWriter/ELF/AArch64/TODO.rst
1011
.. include:: ../tools/lld/TODO.txt
1112

1213
Documentation TODOs

‎lld/include/lld/Core/Reference.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ class Reference {
6464
ARM = 3,
6565
PowerPC = 4,
6666
Hexagon = 5,
67-
Mips = 6
67+
Mips = 6,
68+
AArch64 = 7
6869
};
6970

7071
KindArch kindArch() const { return (KindArch)_kindArch; }

0 commit comments

Comments
 (0)