aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/v850elf.em
diff options
context:
space:
mode:
Diffstat (limited to 'ld/emultempl/v850elf.em')
-rw-r--r--ld/emultempl/v850elf.em54
1 files changed, 54 insertions, 0 deletions
diff --git a/ld/emultempl/v850elf.em b/ld/emultempl/v850elf.em
new file mode 100644
index 0000000..6f9f0d2
--- /dev/null
+++ b/ld/emultempl/v850elf.em
@@ -0,0 +1,54 @@
+# This shell script emits a C file. -*- C -*-
+# Copyright 2013-2015 Free Software Foundation, Inc.
+#
+# This file is part of the GNU Binutils.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program; if not, write to the Free Software
+# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
+# MA 02110-1301, USA.
+#
+
+# This file is sourced from elf32.em, and defines extra cpu specific
+# features.
+#
+fragment <<EOF
+#include "ldctor.h"
+
+static bfd_boolean
+is_v850_target (void)
+{
+ extern const bfd_target v850_elf32_vec;
+ extern const bfd_target v800_elf32_vec;
+
+ return link_info.output_bfd->xvec == & v850_elf32_vec
+ || link_info.output_bfd->xvec == & v800_elf32_vec;
+}
+
+/* Create our note section. */
+
+static void
+v850_after_open (void)
+{
+ if (is_v850_target ()
+ && ! link_info.relocatable
+ && link_info.input_bfds != NULL
+ && ! v850_elf_create_sections (& link_info))
+ einfo ("%X%P: can not create note section: %E\n");
+
+ gld${EMULATION_NAME}_after_open ();
+}
+
+EOF
+
+LDEMUL_AFTER_OPEN=v850_after_open