gdb/configure.ac: remove elf_hp.h check
[binutils-gdb.git] / ld / scripttempl / dlx.sc
blob8dcbf300c56fadab1ac8a511b0515bc94d030805
1 # Copyright (C) 2014-2024 Free Software Foundation, Inc.
3 # Copying and distribution of this file, with or without modification,
4 # are permitted in any medium without royalty provided the copyright
5 # notice and this notice are preserved.
7 cat <<EOF
8 /* Copyright (C) 2014-2024 Free Software Foundation, Inc.
10    Copying and distribution of this script, with or without modification,
11    are permitted in any medium without royalty provided the copyright
12    notice and this notice are preserved.  */
14 OUTPUT_FORMAT("${OUTPUT_FORMAT}", "${BIG_OUTPUT_FORMAT}",
15               "${LITTLE_OUTPUT_FORMAT}")
16 OUTPUT_ARCH(${ARCH})
18 ${RELOCATING+${LIB_SEARCH_DIRS}}
19 SECTIONS
21   ${RELOCATING+. = ${TEXT_START_ADDR};}
22   .text :
23   {
24     ${RELOCATING+CREATE_OBJECT_SYMBOLS}
25     *(.text)
26     ${RELOCATING+etext = ${DATA_ALIGNMENT};}
27   }
28   ${RELOCATING+. = ${DATA_ALIGNMENT};}
29   .data :
30   {
31     *(.data)
32     ${CONSTRUCTING+CONSTRUCTORS}
33     ${RELOCATING+edata  =  .;}
34   }
35   .bss :
36   {
37    *(.bss)
38    ${RELOCATING+*(COMMON)}
39    ${RELOCATING+end = .;}
40   }
42 EOF
44 source_sh $srcdir/scripttempl/misc-sections.sc
45 source_sh $srcdir/scripttempl/DWARF.sc
47 cat <<EOF
49 EOF