[PATCH] D14831: [ELF/AArch64] Accept -m aarch64linux.
Igor Kudrin via llvm-commits
llvm-commits at lists.llvm.org
Thu Nov 19 10:33:49 PST 2015
ikudrin created this revision.
ikudrin added a reviewer: ruiu.
ikudrin added a subscriber: llvm-commits.
ikudrin added a project: lld.
Herald added subscribers: rengolin, aemerson.
This option is passed by clang driver if the target triple is aarch64-unknown-linux.
http://reviews.llvm.org/D14831
Files:
ELF/Driver.cpp
test/ELF/emulation.s
Index: test/ELF/emulation.s
===================================================================
--- test/ELF/emulation.s
+++ test/ELF/emulation.s
@@ -141,7 +141,38 @@
# MIPSEL-NEXT: Flags [ (0x0)
# MIPSEL-NEXT: ]
-# REQUIRES: x86,ppc,mips
+# RUN: llvm-mc -filetype=obj -triple=aarch64-unknown-linux %s -o %taarch64
+# RUN: ld.lld -m aarch64linux %taarch64 -o %t2aarch64
+# RUN: llvm-readobj -file-headers %t2aarch64 | FileCheck --check-prefix=AARCH64 %s
+# RUN: ld.lld %taarch64 -o %t3aarch64
+# RUN: llvm-readobj -file-headers %t3aarch64 | FileCheck --check-prefix=AARCH64 %s
+# AARCH64: ElfHeader {
+# AARCH64-NEXT: Ident {
+# AARCH64-NEXT: Magic: (7F 45 4C 46)
+# AARCH64-NEXT: Class: 64-bit (0x2)
+# AARCH64-NEXT: DataEncoding: LittleEndian (0x1)
+# AARCH64-NEXT: FileVersion: 1
+# AARCH64-NEXT: OS/ABI: SystemV (0x0)
+# AARCH64-NEXT: ABIVersion: 0
+# AARCH64-NEXT: Unused: (00 00 00 00 00 00 00)
+# AARCH64-NEXT: }
+# AARCH64-NEXT: Type: Executable (0x2)
+# AARCH64-NEXT: Machine: EM_AARCH64 (0xB7)
+# AARCH64-NEXT: Version: 1
+# AARCH64-NEXT: Entry:
+# AARCH64-NEXT: ProgramHeaderOffset: 0x40
+# AARCH64-NEXT: SectionHeaderOffset:
+# AARCH64-NEXT: Flags [ (0x0)
+# AARCH64-NEXT: ]
+# AARCH64-NEXT: HeaderSize: 64
+# AARCH64-NEXT: ProgramHeaderEntrySize: 56
+# AARCH64-NEXT: ProgramHeaderCount:
+# AARCH64-NEXT: SectionHeaderEntrySize: 64
+# AARCH64-NEXT: SectionHeaderCount:
+# AARCH64-NEXT: StringTableSectionIndex:
+# AARCH64-NEXT: }
+
+# REQUIRES: x86,ppc,mips,aarch64
.globl _start;
_start:
Index: ELF/Driver.cpp
===================================================================
--- ELF/Driver.cpp
+++ ELF/Driver.cpp
@@ -50,6 +50,8 @@
return {ELF32LEKind, EM_386};
if (S == "elf_x86_64")
return {ELF64LEKind, EM_X86_64};
+ if (S == "aarch64linux")
+ return {ELF64LEKind, EM_AARCH64};
error("Unknown emulation: " + S);
}
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D14831.40674.patch
Type: text/x-patch
Size: 1932 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20151119/e7eeaebc/attachment.bin>
More information about the llvm-commits
mailing list