summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Felker <dalias@libc.org>2015-09-30 14:32:07 +0900
committerKaz Kojima <kkojima@rr.iij4u.or.jp>2015-09-30 14:32:07 +0900
commit6c4f2328aba04ffacce9a4033fd253222e2ea1aa (patch)
tree8198ee38cea6c7808548d70df18d5a23c4ccb450
parent3b1ad7d5104a63b4c7cae69188a56d1a230f68e0 (diff)
downloadbinutils-gdb-6c4f2328aba04ffacce9a4033fd253222e2ea1aa.tar.gz
Add fdpic and misc targets to config.bfd for sh*-*-linux*
-rw-r--r--bfd/ChangeLog5
-rw-r--r--bfd/config.bfd3
2 files changed, 8 insertions, 0 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index bcbe0e16655..16dd16601bc 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,8 @@
+2015-09-30 Rich Felker <dalias@libc.org>
+
+ * config.bfd (targ_selvecs): Add fdpic and misc targets
+ for sh*-*-linux*.
+
2015-09-29 Andrew Stubbs <ams@codesourcery.com>
H.J. Lu <hongjiu.lu@intel.com>
diff --git a/bfd/config.bfd b/bfd/config.bfd
index 20a03512d9b..fdb0fc03aab 100644
--- a/bfd/config.bfd
+++ b/bfd/config.bfd
@@ -1389,6 +1389,7 @@ case "${targ}" in
sh-*-linux*)
targ_defvec=sh_elf32_linux_be_vec
targ_selvecs="sh_elf32_linux_vec sh64_elf32_linux_vec sh64_elf32_linux_be_vec sh64_elf64_linux_vec sh64_elf64_linux_be_vec"
+ targ_selvecs="${targ_selvecs} sh_elf32_vec sh_elf32_le_vec sh_elf32_fdpic_le_vec sh_elf32_fdpic_be_vec"
want64=true
;;
#endif /* BFD64 */
@@ -1396,10 +1397,12 @@ case "${targ}" in
sh*eb-*-linux*)
targ_defvec=sh_elf32_linux_be_vec
targ_selvecs=sh_elf32_linux_vec
+ targ_selvecs="${targ_selvecs} sh_elf32_vec sh_elf32_le_vec sh_elf32_fdpic_le_vec sh_elf32_fdpic_be_vec"
;;
sh*-*-linux*)
targ_defvec=sh_elf32_linux_vec
targ_selvecs=sh_elf32_linux_be_vec
+ targ_selvecs="${targ_selvecs} sh_elf32_vec sh_elf32_le_vec sh_elf32_fdpic_le_vec sh_elf32_fdpic_be_vec"
;;
sh-*-uclinux* | sh[12]-*-uclinux*)