Change regcache list to be an hash map
[deliverable/binutils-gdb.git] / ld / emultempl / vxworks.em
index e49391a1cbb5f2b96053c0c92d2415c141270b38..77ab755ef839f4c3cab20c4ffbc086b9db4ed49f 100644 (file)
@@ -1,5 +1,5 @@
 # This shell script emits a C file. -*- C -*-
-#   Copyright 2007 Free Software Foundation, Inc.
+#   Copyright (C) 2006-2020 Free Software Foundation, Inc.
 #
 # This file is part of the GNU Binutils.
 #
@@ -41,16 +41,16 @@ vxworks_after_open (void)
 
   if (force_dynamic
       && link_info.input_bfds
-      && output_bfd->xvec->flavour == bfd_target_elf_flavour
+      && bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour
       && !_bfd_elf_link_create_dynamic_sections (link_info.input_bfds,
                                                 &link_info))
-    einfo ("%X%P: Cannot create dynamic sections %E\n");
+    einfo (_("%X%P: cannot create dynamic sections %E\n"));
 
   if (!force_dynamic
-      && !link_info.shared
-      && output_bfd->xvec->flavour == bfd_target_elf_flavour
+      && !bfd_link_pic (&link_info)
+      && bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour
       && elf_hash_table (&link_info)->dynamic_sections_created)
-    einfo ("%X%P: Dynamic sections created in non-dynamic link\n");
+    einfo (_("%X%P: dynamic sections created in non-dynamic link\n"));
 }
 
 EOF
@@ -83,14 +83,14 @@ PARSE_AND_LIST_ARGS_CASES=$PARSE_AND_LIST_ARGS_CASES'
 #
 #   (2) VXWORKS_BASE_EM_FILE set the hook's LDEMUL_FOO variable to
 #      gld${EMULATION_NAME}_foo.  This means that the file has
-#      replaced elf32.em's default definition, so we simply #define
+#      replaced elf.em's default definition, so we simply #define
 #      the current value of LDEMUL_FOO to vxworks_foo.
 #
 #   (3) VXWORKS_BASE_EM_FILE set the hook's LDEMUL_FOO variable to
 #      something other than gld${EMULATION_NAME}_foo.  We handle
 #      this case in the same way as (1).
 for override in before_parse after_open; do
-  var="LDEMUL_`echo ${override} | tr a-z A-Z`"
+  var="LDEMUL_`echo ${override} | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`"
   eval value=\$${var}
   if test "${value}" = "gld${EMULATION_NAME}_${override}"; then
     fragment <<EOF
This page took 0.023306 seconds and 4 git commands to generate.