Automatic date update in version.in
[binutils-gdb.git] / ld / emultempl / vxworks.em
blob307049cfd3a8399c03e2d024b3073614283ddf0c
1 # This shell script emits a C file. -*- C -*-
2 #   Copyright (C) 2006-2024 Free Software Foundation, Inc.
4 # This file is part of the GNU Binutils.
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 # MA 02110-1301, USA.
22 if test -n "$VXWORKS_BASE_EM_FILE" ; then
23   source_em "${srcdir}/emultempl/${VXWORKS_BASE_EM_FILE}.em"
26 fragment <<EOF
28 static int force_dynamic;
30 static void
31 vxworks_before_parse (void)
33   ${LDEMUL_BEFORE_PARSE-gld${EMULATION_NAME}_before_parse} ();
34   config.rpath_separator = ';';
37 static void
38 vxworks_after_open (void)
40   ${LDEMUL_AFTER_OPEN-gld${EMULATION_NAME}_after_open} ();
42   if (force_dynamic
43       && link_info.input_bfds
44       && bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour
45       && !_bfd_elf_link_create_dynamic_sections (link_info.input_bfds,
46                                                  &link_info))
47     einfo (_("%X%P: cannot create dynamic sections %E\n"));
49   if (!force_dynamic
50       && !bfd_link_pic (&link_info)
51       && bfd_get_flavour (link_info.output_bfd) == bfd_target_elf_flavour
52       && elf_hash_table (&link_info)->dynamic_sections_created)
53     einfo (_("%X%P: dynamic sections created in non-dynamic link\n"));
56 EOF
58 PARSE_AND_LIST_LONGOPTS=$PARSE_AND_LIST_LONGOPTS'
59   {"force-dynamic", no_argument, NULL, OPTION_FORCE_DYNAMIC},
62 PARSE_AND_LIST_OPTIONS=$PARSE_AND_LIST_OPTIONS'
63   fprintf (file, _("\
64   --force-dynamic             Always create dynamic sections\n"));
67 PARSE_AND_LIST_ARGS_CASES=$PARSE_AND_LIST_ARGS_CASES'
68     case OPTION_FORCE_DYNAMIC:
69       force_dynamic = 1;
70       break;
73 # Hook in our routines above.  There are three possibilities:
75 #   (1) VXWORKS_BASE_EM_FILE did not set the hook's LDEMUL_FOO variable.
76 #       We want to define LDEMUL_FOO to vxworks_foo in that case,
78 #   (2) VXWORKS_BASE_EM_FILE set the hook's LDEMUL_FOO variable to
79 #       gld${EMULATION_NAME}_foo.  This means that the file has
80 #       replaced elf.em's default definition, so we simply #define
81 #       the current value of LDEMUL_FOO to vxworks_foo.
83 #   (3) VXWORKS_BASE_EM_FILE set the hook's LDEMUL_FOO variable to
84 #       something other than gld${EMULATION_NAME}_foo.  We handle
85 #       this case in the same way as (1).
86 for override in before_parse after_open; do
87   var="LDEMUL_`echo ${override} | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`"
88   eval value=\$${var}
89   if test "${value}" = "gld${EMULATION_NAME}_${override}"; then
90     fragment <<EOF
91 #define ${value} vxworks_${override}
92 EOF
93   else
94     eval $var=vxworks_${override}
95   fi
96 done