aboutsummaryrefslogtreecommitdiff
path: root/ld/emultempl/vms.em
diff options
context:
space:
mode:
authorTristan Gingold <gingold@adacore.com>2011-05-04 08:31:04 +0000
committerTristan Gingold <gingold@adacore.com>2011-05-04 08:31:04 +0000
commit45cfb56cf4e3043616ea2aca7e32d8aed0feb65c (patch)
tree9e68dac47b7973c2394b0897592db6e582219926 /ld/emultempl/vms.em
parent8cfbb63d82b88e5bcd31d873782964d6e678fd9d (diff)
downloadfsf-binutils-gdb-45cfb56cf4e3043616ea2aca7e32d8aed0feb65c.zip
fsf-binutils-gdb-45cfb56cf4e3043616ea2aca7e32d8aed0feb65c.tar.gz
fsf-binutils-gdb-45cfb56cf4e3043616ea2aca7e32d8aed0feb65c.tar.bz2
2011-05-04 Tristan Gingold <gingold@adacore.com>
* emultempl/generic.em (ld_${EMULATION_NAME}_emulation): Add LDEMUL_ADD_OPTIONS and LDEMUL_HANDLE_OPTION. * emultempl/vms.em (OPTION_IDENTIFICATION): New macro. (gld${EMULATION_NAME}_add_options): New function. (gld${EMULATION_NAME}_list_options): Ditto. (gld${EMULATION_NAME}_handle_option): Ditto. (LDEMUL_ADD_OPTIONS, LDEMUL_HANDLE_OPTION) (LDEMUL_LIST_OPTIONS): Define.
Diffstat (limited to 'ld/emultempl/vms.em')
-rw-r--r--ld/emultempl/vms.em50
1 files changed, 50 insertions, 0 deletions
diff --git a/ld/emultempl/vms.em b/ld/emultempl/vms.em
index fb8fd53..6107c56 100644
--- a/ld/emultempl/vms.em
+++ b/ld/emultempl/vms.em
@@ -23,6 +23,8 @@
# This file is sourced from generic.em.
fragment <<EOF
+#include "getopt.h"
+
static void
gld${EMULATION_NAME}_before_parse (void)
{
@@ -117,6 +119,51 @@ vms_place_orphan (asection *s,
else
return NULL;
}
+
+/* VMS specific options. */
+#define OPTION_IDENTIFICATION (300 + 1)
+
+static void
+gld${EMULATION_NAME}_add_options
+ (int ns ATTRIBUTE_UNUSED,
+ char **shortopts ATTRIBUTE_UNUSED,
+ int nl,
+ struct option **longopts,
+ int nrl ATTRIBUTE_UNUSED,
+ struct option **really_longopts ATTRIBUTE_UNUSED)
+{
+ static const struct option xtra_long[] = {
+ {"identification", required_argument, NULL, OPTION_IDENTIFICATION},
+ {NULL, no_argument, NULL, 0}
+ };
+
+ *longopts
+ = xrealloc (*longopts, nl * sizeof (struct option) + sizeof (xtra_long));
+ memcpy (*longopts + nl, &xtra_long, sizeof (xtra_long));
+}
+
+static void
+gld${EMULATION_NAME}_list_options (FILE *file)
+{
+ fprintf (file, _(" --identification <string> Set the identification of the output\n"));
+}
+
+static bfd_boolean
+gld${EMULATION_NAME}_handle_option (int optc)
+{
+ switch (optc)
+ {
+ default:
+ return FALSE;
+
+ case OPTION_IDENTIFICATION:
+ /* Currently ignored. */
+ break;
+ }
+
+ return TRUE;
+}
+
EOF
LDEMUL_PLACE_ORPHAN=vms_place_orphan
@@ -124,3 +171,6 @@ LDEMUL_BEFORE_PARSE=gld"$EMULATION_NAME"_before_parse
LDEMUL_CREATE_OUTPUT_SECTION_STATEMENTS=gld"$EMULATION_NAME"_create_output_section_statements
LDEMUL_FIND_POTENTIAL_LIBRARIES=gld"$EMULATION_NAME"_find_potential_libraries
LDEMUL_OPEN_DYNAMIC_ARCHIVE=gld"$EMULATION_NAME"_open_dynamic_archive
+LDEMUL_ADD_OPTIONS=gld"$EMULATION_NAME"_add_options
+LDEMUL_HANDLE_OPTION=gld"$EMULATION_NAME"_handle_option
+LDEMUL_LIST_OPTIONS=gld"$EMULATION_NAME"_list_options