mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-23 10:03:47 +08:00
fd67aa1129
Adds two new external authors to etc/update-copyright.py to cover bfd/ax_tls.m4, and adds gprofng to dirs handled automatically, then updates copyright messages as follows: 1) Update cgen/utils.scm emitted copyrights. 2) Run "etc/update-copyright.py --this-year" with an extra external author I haven't committed, 'Kalray SA.', to cover gas testsuite files (which should have their copyright message removed). 3) Build with --enable-maintainer-mode --enable-cgen-maint=yes. 4) Check out */po/*.pot which we don't update frequently.
50 lines
1.1 KiB
Scala
50 lines
1.1 KiB
Scala
# Copyright (C) 2014-2024 Free Software Foundation, Inc.
|
|
#
|
|
# Copying and distribution of this file, with or without modification,
|
|
# are permitted in any medium without royalty provided the copyright
|
|
# notice and this notice are preserved.
|
|
|
|
cat <<EOF
|
|
/* Copyright (C) 2014-2024 Free Software Foundation, Inc.
|
|
|
|
Copying and distribution of this script, with or without modification,
|
|
are permitted in any medium without royalty provided the copyright
|
|
notice and this notice are preserved. */
|
|
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}", "${BIG_OUTPUT_FORMAT}",
|
|
"${LITTLE_OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
|
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
|
SECTIONS
|
|
{
|
|
${RELOCATING+. = ${TEXT_START_ADDR};}
|
|
.text :
|
|
{
|
|
${RELOCATING+CREATE_OBJECT_SYMBOLS}
|
|
*(.text)
|
|
${RELOCATING+etext = ${DATA_ALIGNMENT};}
|
|
}
|
|
${RELOCATING+. = ${DATA_ALIGNMENT};}
|
|
.data :
|
|
{
|
|
*(.data)
|
|
${CONSTRUCTING+CONSTRUCTORS}
|
|
${RELOCATING+edata = .;}
|
|
}
|
|
.bss :
|
|
{
|
|
*(.bss)
|
|
${RELOCATING+*(COMMON)}
|
|
${RELOCATING+end = .;}
|
|
}
|
|
|
|
EOF
|
|
|
|
source_sh $srcdir/scripttempl/misc-sections.sc
|
|
source_sh $srcdir/scripttempl/DWARF.sc
|
|
|
|
cat <<EOF
|
|
}
|
|
EOF
|