This is the mail archive of the binutils@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH] Add pei-x86-64 target to x86_64-*-rtems*


Hi!

This patch adds the pei-x86-64 target to bfd so that the RTEMS tools like
objcopy can be used to generate UEFI application image files from ELFs.

Cheers,
Amaan
---
bfd/ChangeLog:

2018-05-19  Amaan Cheval  <amaan.cheval@gmail.com>

	* config.bfd: Add pei-x86-64 target to x86_64-*-rtems*.

---

diff --git a/bfd/config.bfd b/bfd/config.bfd
index 0db8ed4562..f8ca72b332 100644
--- a/bfd/config.bfd
+++ b/bfd/config.bfd
@@ -665,6 +665,10 @@ case "${targ}" in
   x86_64-*-elf* | x86_64-*-rtems* | x86_64-*-fuchsia)
     targ_defvec=x86_64_elf64_vec
     targ_selvecs="i386_elf32_vec iamcu_elf32_vec x86_64_elf32_vec l1om_elf64_vec k1om_elf64_vec"
+    case "${targ}" in
+      x86_64-*-rtems*)
+    targ_selvecs="${targ_selvecs} x86_64_pei_vec"
+    esac
     want64=true
     ;;
   x86_64-*-dragonfly*)


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]