updated binutils

This commit is contained in:
2022-09-23 01:25:20 +02:00
parent cc0d297b4e
commit b40cafd7bb
14 changed files with 416 additions and 492 deletions

View File

@@ -2,7 +2,7 @@
# $Id$
#
PORTNAME= binutils
PORTVERSION= 2.32
PORTVERSION= 2.37
CATEGORIES= devel
MASTER_SITES= http://ftp.gnu.org/gnu/binutils/

View File

@@ -1,2 +1,3 @@
SHA256 (binutils-2.32.tar.bz2) = de38b15c902eb2725eac6af21183a5f34ea4634cb0bcef19612b50e5ed31072d
SIZE (binutils-2.32.tar.bz2) = 30782392
TIMESTAMP = 1663887938
SHA256 (binutils-2.37.tar.bz2) = 67fc1a4030d08ee877a4867d3dcab35828148f87e1fd05da6db585ed5a166bd4
SIZE (binutils-2.37.tar.bz2) = 33888611

View File

@@ -1,25 +0,0 @@
diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc
index 444aef2942..8a3858d32b 100644
--- a/ld/scripttempl/elf.sc
+++ b/ld/scripttempl/elf.sc
@@ -637,9 +637,9 @@ cat <<EOF
${SDATA_GOT+${OTHER_GOT_SECTIONS}}
${DATA_SDATA-${SDATA}}
${DATA_SDATA-${OTHER_SDATA_SECTIONS}}
- ${RELOCATING+${DATA_END_SYMBOLS-${CREATE_SHLIB+PROVIDE (}${USER_LABEL_PREFIX}_edata = .${CREATE_SHLIB+)}; PROVIDE (${USER_LABEL_PREFIX}edata = .);}}
+ ${RELOCATING+${DATA_END_SYMBOLS-${USER_LABEL_PREFIX}_edata = .; PROVIDE (${USER_LABEL_PREFIX}edata = .);}}
${RELOCATING+. = .;}
- ${RELOCATING+${CREATE_SHLIB+PROVIDE (}${USER_LABEL_PREFIX}__bss_start = .${CREATE_SHLIB+)};}
+ ${RELOCATING+${USER_LABEL_PREFIX}__bss_start = .;}
${RELOCATING+${OTHER_BSS_SYMBOLS}}
${DATA_SDATA-${SBSS}}
${BSS_PLT+${PLT}}
@@ -672,7 +672,7 @@ cat <<EOF
${LARGE_BSS_AFTER_BSS-${LARGE_BSS}}
${RELOCATING+. = ALIGN(${ALIGNMENT});}
${RELOCATING+${OTHER_END_SYMBOLS}}
- ${RELOCATING+${END_SYMBOLS-${CREATE_SHLIB+PROVIDE (}${USER_LABEL_PREFIX}_end = .${CREATE_SHLIB+)}; PROVIDE (${USER_LABEL_PREFIX}end = .);}}
+ ${RELOCATING+${END_SYMBOLS-${USER_LABEL_PREFIX}_end = .; PROVIDE (${USER_LABEL_PREFIX}end = .);}}
${RELOCATING+${DATA_SEGMENT_END}}
${TINY_DATA_SECTION}
${TINY_BSS_SECTION}

View File

@@ -1,9 +1,9 @@
--- bfd/elfxx-sparc.c.orig 2013-11-08 11:13:48.000000000 +0100
+++ bfd/elfxx-sparc.c 2014-10-10 16:30:23.316125000 +0200
@@ -2942,12 +2942,14 @@
--- bfd/elfxx-sparc.c.orig 2021-07-08 13:37:19.000000000 +0200
+++ bfd/elfxx-sparc.c 2021-07-21 09:32:51.373421000 +0200
@@ -2784,12 +2784,14 @@
Elf_Internal_Rela *relend;
int num_relocs;
bfd_boolean is_vxworks_tls;
bool is_vxworks_tls;
+ const struct elf_backend_data *bed;
htab = _bfd_sparc_elf_hash_table (info);
@@ -15,9 +15,9 @@
if (elf_hash_table (info)->hgot == NULL)
got_base = 0;
@@ -3528,6 +3530,8 @@
@@ -3448,6 +3450,8 @@
bfd_set_error (bfd_error_bad_value);
return FALSE;
return false;
}
+ if (bed->elf_osabi == ELFOSABI_FREEBSD)
+ outrel.r_addend -= osec->vma;

View File

@@ -0,0 +1,11 @@
--- etc/texi2pod.pl.orig 2021-08-30 17:17:09 UTC
+++ etc/texi2pod.pl
@@ -59,6 +59,8 @@ while ($_ = shift) {
$flag = shift;
}
push (@ipath, $flag);
+ } elsif (/^--no-split$/) {
+ # ignore option for makeinfo compatibility
} elsif (/^-/) {
usage();
} else {

View File

@@ -0,0 +1,45 @@
From 10b4dbbf281397e2827820c715c39559c7f7a29d Mon Sep 17 00:00:00 2001
From: Alan Modra <amodra@gmail.com>
Date: Tue, 20 Jul 2021 18:46:57 +0930
Subject: [PATCH] PR28106, build of 2.37 fails on FreeBSD and Clang
https://en.cppreference.com/w/cpp/types/NULL says NULL might be
defined as nullptr.
https://en.cppreference.com/w/cpp/language/reinterpret_cast says
reinterpret_cast can't be used on nullptr.
PR gold/28106
PR gold/27815
* gc.h (gc_process_relocs): Use static_cast in Section_id constructor.
(cherry picked from commit b97bd976233ee4d43c2fe18f6356e62779cbe82d)
---
gold/ChangeLog | 6 ++++++
gold/gc.h | 4 ++--
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git gold/gc.h gold/gc.h
index 6ebd81f3fd0..4a1368f5abe 100644
--- gold/gc.h
+++ gold/gc.h
@@ -247,7 +247,7 @@ gc_process_relocs(
if (is_ordinary)
(*secvec).push_back(Section_id(src_obj, dst_indx));
else
- (*secvec).push_back(Section_id(reinterpret_cast<Relobj*>(NULL), 0));
+ (*secvec).push_back(Section_id(static_cast<Relobj*>(NULL), 0));
// If the target of the relocation is an STT_SECTION symbol,
// make a note of that by storing -1 in the symbol vector.
if (lsym.get_st_type() == elfcpp::STT_SECTION)
@@ -329,7 +329,7 @@ gc_process_relocs(
if (is_ordinary && dst_obj != NULL)
(*secvec).push_back(Section_id(dst_obj, dst_indx));
else
- (*secvec).push_back(Section_id(reinterpret_cast<Relobj*>(NULL), 0));
+ (*secvec).push_back(Section_id(static_cast<Relobj*>(NULL), 0));
(*symvec).push_back(gsym);
(*addendvec).push_back(std::make_pair(
static_cast<long long>(symvalue),
--
2.32.0

View File

@@ -0,0 +1,14 @@
--- gold/testsuite/Makefile.in.orig 2021-07-02 07:48:07 UTC
+++ gold/testsuite/Makefile.in
@@ -9585,9 +9585,9 @@ uninstall-am:
@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@ cp -f incr_comdat_test_2_v3.o incr_comdat_test_1_tmp.o
@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXLINK) -Wl,--incremental-update -Wl,-z,norelro,-no-pie incr_comdat_test_1.o incr_comdat_test_1_tmp.o
@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@exception_x86_64_bnd_1.o: exception_test_1.cc gcctestdir/as
-@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXCOMPILE) -c -fpic -Wa,-madd-bnd-prefix -o $@ $<
+@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXCOMPILE) -c -fpic -o $@ $<
@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@exception_x86_64_bnd_2.o: exception_test_2.cc gcctestdir/as
-@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXCOMPILE) -c -Wa,-madd-bnd-prefix -o $@ $<
+@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXCOMPILE) -c -o $@ $<
@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@gnu_property_test.stdout: gnu_property_test
@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(TEST_READELF) -lhSWn $< >$@
@DEFAULT_TARGET_X86_64_TRUE@@GCC_TRUE@@NATIVE_LINKER_TRUE@gnu_property_test: gcctestdir/ld gnu_property_a.o gnu_property_b.o gnu_property_c.o

View File

@@ -0,0 +1,20 @@
--- ld/emulparams/elf32lriscv-defs.sh.orig 2020-02-03 18:09:14 UTC
+++ ld/emulparams/elf32lriscv-defs.sh
@@ -16,15 +16,8 @@ if test `echo "$host" | sed -e s/64//` = `echo "$targe
esac
fi
-# Enable shared library support for everything except an embedded elf target.
-case "$target" in
- riscv*-elf)
- ;;
- *)
- GENERATE_SHLIB_SCRIPT=yes
- GENERATE_PIE_SCRIPT=yes
- ;;
-esac
+GENERATE_SHLIB_SCRIPT=yes
+GENERATE_PIE_SCRIPT=yes
TEXT_START_ADDR=0x10000
MAXPAGESIZE="CONSTANT (MAXPAGESIZE)"

View File

@@ -20,22 +20,24 @@
# Generic vectors
targ_selvecs="${targ_selvecs} mips_elf32_ntrad_be_vec mips_elf32_ntrad_le_vec mips_elf32_trad_be_vec mips_elf32_trad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec"
;;
--- ld/configure.tgt.orig 2015-07-17 20:52:58.728911150 +0000
+++ ld/configure.tgt 2015-07-17 21:03:29.559869219 +0000
@@ -491,12 +491,12 @@
targ_extra_emuls="elf32ltsmip elf32btsmipn32 elf64btsmip elf32ltsmipn32 elf64ltsmip"
targ_extra_libpath=$targ_extra_emuls ;;
--- ./ld/configure.tgt.orig 2021-01-09 19:47:34.000000000 +0900
+++ ./ld/configure.tgt 2021-05-13 16:24:16.129568000 +0900
@@ -548,13 +548,13 @@
targ_extra_libpath=$targ_extra_emuls
;;
mips64*el-*-freebsd* | mips64*el-*-kfreebsd*-gnu)
- targ_emul=elf32ltsmipn32_fbsd
- targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip elf32ltsmip_fbsd elf32btsmip_fbsd elf32btsmipn32_fbsd elf64ltsmip_fbsd elf64btsmip_fbsd"
+ targ_emul=elf64ltsmip_fbsd
+ targ_extra_emuls="elf32ltsmip_fbsd elf32btsmip_fbsd elf32ltsmipn32_fbsd elf32btsmipn32_fbsd elf64ltsmip_fbsd elf64btsmip_fbsd elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip"
targ_extra_libpath=$targ_extra_emuls ;;
targ_extra_libpath=$targ_extra_emuls
;;
mips64*-*-freebsd* | mips64*-*-kfreebsd*-gnu)
- targ_emul=elf32btsmipn32_fbsd
- targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip elf32ltsmip_fbsd elf32btsmip_fbsd elf32ltsmipn32_fbsd elf64ltsmip_fbsd elf64btsmip_fbsd"
+ targ_emul=elf64btsmip_fbsd
+ targ_extra_emuls="elf32btsmip_fbsd elf32ltsmip_fbsd elf32btsmipn32_fbsd elf32ltsmipn32_fbsd elf64btsmip_fbsd elf64ltsmip_fbsd elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip"
targ_extra_libpath=$targ_extra_emuls ;;
targ_extra_libpath=$targ_extra_emuls
;;
mips*el-*-freebsd* | mips*el-*-kfreebsd*-gnu)
targ_emul=elf32ltsmip_fbsd

View File

@@ -0,0 +1,13 @@
--- gas/config/tc-ppc.c.orig 2020-11-03 12:21:04.587127000 +0100
+++ gas/config/tc-ppc.c 2020-11-03 12:21:33.039193000 +0100
@@ -1554,7 +1554,9 @@
#endif
#ifdef OBJ_ELF
# ifdef TE_FreeBSD
- return (ppc_obj64 ? "elf64-powerpc-freebsd" : "elf32-powerpc-freebsd");
+ return (target_big_endian
+ ? (ppc_obj64 ? "elf64-powerpc-freebsd" : "elf32-powerpc-freebsd")
+ : (ppc_obj64 ? "elf64-powerpcle-freebsd" : "elf32-powerpcle-freebsd"));
# elif defined (TE_VXWORKS)
return "elf32-powerpc-vxworks";
# else

View File

@@ -0,0 +1,57 @@
--- ./ld/configure.tgt.orig 2021-05-13 08:26:36.765168000 +0900
+++ ./ld/configure.tgt 2021-05-13 08:40:35.679397000 +0900
@@ -787,6 +787,10 @@
s12z-*-*) targ_emul=m9s12zelf
targ_extra_ofiles=ldelfgen.o
;;
+s390x-*-freebsd*) targ_emul=elf64_s390
+ targ_extra_emuls=elf_s390
+ targ_extra_libpath=$targ_extra_emuls
+ tdir_elf_s390=`echo ${targ_alias} | sed -e 's/s390x/s390/'` ;;
s390x-*-linux*) targ_emul=elf64_s390
targ_extra_emuls=elf_s390
targ_extra_libpath=$targ_extra_emuls
--- ./gas/configure.orig 2019-02-02 15:50:20.000000000 +0000
+++ ./gas/configure 2019-08-07 20:44:45.468441000 +0000
@@ -7095,6 +7095,7 @@ ia64-*-hpux*)
;;
x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
+s390*-*freebsd*| \
s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
# Find out which ABI we are using.
echo 'int i;' > conftest.$ac_ext
@@ -7125,6 +7126,9 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
powerpc64-*linux*)
LD="${LD-ld} -m elf32ppclinux"
;;
+ s390x-*freebsd*)
+ LD="${LD-ld} -m elf_s390"
+ ;;
s390x-*linux*)
LD="${LD-ld} -m elf_s390"
;;
@@ -7146,6 +7150,9 @@ s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
;;
powerpc-*linux*)
LD="${LD-ld} -m elf64ppc"
+ ;;
+ s390*-*freebsd*)
+ LD="${LD-ld} -m elf64_s390"
;;
s390*-*linux*|s390*-*tpf*)
LD="${LD-ld} -m elf64_s390"
--- ./bfd/config.bfd.orig 2019-08-07 20:35:52.161591000 +0000
+++ ./bfd/config.bfd 2019-08-07 20:40:33.579807000 +0000
@@ -1213,6 +1213,11 @@ case "${targ}" in
want64=true
;;
#ifdef BFD64
+ s390x-*-freebsd*)
+ targ_defvec=s390_elf64_vec
+ targ_selvecs=s390_elf32_vec
+ want64=true
+ ;;
s390x-*-linux*)
targ_defvec=s390_elf64_vec
targ_selvecs=s390_elf32_vec

View File

@@ -14,10 +14,27 @@ bin/greadelf
bin/gsize
bin/gstrings
bin/gstrip
include/bfd.h
include/bfdlink.h
include/ctf-api.h
include/ctf.h
include/diagnostics.h
include/dis-asm.h
include/plugin-api.h
include/symcat.h
lib/libbfd.a
lib/libbfd.la
lib/libctf-nobfd.a
lib/libctf-nobfd.la
lib/libctf.a
lib/libctf.la
lib/libopcodes.a
lib/libopcodes.la
man/man1/gaddr2line.1.gz
man/man1/gar.1.gz
man/man1/gas.1.gz
man/man1/gc++filt.1.gz
man/man1/gdlltool.1.gz
man/man1/gelfedit.1.gz
man/man1/ggprof.1.gz
man/man1/gld.1.gz
@@ -29,215 +46,222 @@ man/man1/greadelf.1.gz
man/man1/gsize.1.gz
man/man1/gstrings.1.gz
man/man1/gstrip.1.gz
%%TARGET%%/bin/ar
%%TARGET%%/bin/as
%%TARGET%%/bin/ld
%%TARGET%%/bin/ld.bfd
%%TARGET%%/bin/nm
%%TARGET%%/bin/objcopy
%%TARGET%%/bin/objdump
%%TARGET%%/bin/ranlib
%%TARGET%%/bin/readelf
%%TARGET%%/bin/strip
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.x
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xbn
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xc
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xce
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xd
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdc
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdce
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xde
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdw
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdwe
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xe
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xn
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xr
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xs
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xsc
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xsce
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xse
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xsw
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xswe
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xu
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xw
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xwe
%%TARGET%%/lib/ldscripts/elf_i386.x
%%TARGET%%/lib/ldscripts/elf_i386.xbn
%%TARGET%%/lib/ldscripts/elf_i386.xc
%%TARGET%%/lib/ldscripts/elf_i386.xce
%%TARGET%%/lib/ldscripts/elf_i386.xd
%%TARGET%%/lib/ldscripts/elf_i386.xdc
%%TARGET%%/lib/ldscripts/elf_i386.xdce
%%TARGET%%/lib/ldscripts/elf_i386.xde
%%TARGET%%/lib/ldscripts/elf_i386.xdw
%%TARGET%%/lib/ldscripts/elf_i386.xdwe
%%TARGET%%/lib/ldscripts/elf_i386.xe
%%TARGET%%/lib/ldscripts/elf_i386.xn
%%TARGET%%/lib/ldscripts/elf_i386.xr
%%TARGET%%/lib/ldscripts/elf_i386.xs
%%TARGET%%/lib/ldscripts/elf_i386.xsc
%%TARGET%%/lib/ldscripts/elf_i386.xsce
%%TARGET%%/lib/ldscripts/elf_i386.xse
%%TARGET%%/lib/ldscripts/elf_i386.xsw
%%TARGET%%/lib/ldscripts/elf_i386.xswe
%%TARGET%%/lib/ldscripts/elf_i386.xu
%%TARGET%%/lib/ldscripts/elf_i386.xw
%%TARGET%%/lib/ldscripts/elf_i386.xwe
%%TARGET%%/lib/ldscripts/elf_iamcu.x
%%TARGET%%/lib/ldscripts/elf_iamcu.xbn
%%TARGET%%/lib/ldscripts/elf_iamcu.xc
%%TARGET%%/lib/ldscripts/elf_iamcu.xce
%%TARGET%%/lib/ldscripts/elf_iamcu.xd
%%TARGET%%/lib/ldscripts/elf_iamcu.xdc
%%TARGET%%/lib/ldscripts/elf_iamcu.xdce
%%TARGET%%/lib/ldscripts/elf_iamcu.xde
%%TARGET%%/lib/ldscripts/elf_iamcu.xdw
%%TARGET%%/lib/ldscripts/elf_iamcu.xdwe
%%TARGET%%/lib/ldscripts/elf_iamcu.xe
%%TARGET%%/lib/ldscripts/elf_iamcu.xn
%%TARGET%%/lib/ldscripts/elf_iamcu.xr
%%TARGET%%/lib/ldscripts/elf_iamcu.xs
%%TARGET%%/lib/ldscripts/elf_iamcu.xsc
%%TARGET%%/lib/ldscripts/elf_iamcu.xsce
%%TARGET%%/lib/ldscripts/elf_iamcu.xse
%%TARGET%%/lib/ldscripts/elf_iamcu.xsw
%%TARGET%%/lib/ldscripts/elf_iamcu.xswe
%%TARGET%%/lib/ldscripts/elf_iamcu.xu
%%TARGET%%/lib/ldscripts/elf_iamcu.xw
%%TARGET%%/lib/ldscripts/elf_iamcu.xwe
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.x
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xbn
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xc
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xce
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xd
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xdc
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xdce
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xde
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xdw
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xdwe
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xe
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xn
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xr
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xs
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xsc
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xsce
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xse
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xsw
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xswe
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xu
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xw
%%TARGET%%/lib/ldscripts/elf_k1om_fbsd.xwe
%%TARGET%%/lib/ldscripts/elf_k1om.x
%%TARGET%%/lib/ldscripts/elf_k1om.xbn
%%TARGET%%/lib/ldscripts/elf_k1om.xc
%%TARGET%%/lib/ldscripts/elf_k1om.xce
%%TARGET%%/lib/ldscripts/elf_k1om.xd
%%TARGET%%/lib/ldscripts/elf_k1om.xdc
%%TARGET%%/lib/ldscripts/elf_k1om.xdce
%%TARGET%%/lib/ldscripts/elf_k1om.xde
%%TARGET%%/lib/ldscripts/elf_k1om.xdw
%%TARGET%%/lib/ldscripts/elf_k1om.xdwe
%%TARGET%%/lib/ldscripts/elf_k1om.xe
%%TARGET%%/lib/ldscripts/elf_k1om.xn
%%TARGET%%/lib/ldscripts/elf_k1om.xr
%%TARGET%%/lib/ldscripts/elf_k1om.xs
%%TARGET%%/lib/ldscripts/elf_k1om.xsc
%%TARGET%%/lib/ldscripts/elf_k1om.xsce
%%TARGET%%/lib/ldscripts/elf_k1om.xse
%%TARGET%%/lib/ldscripts/elf_k1om.xsw
%%TARGET%%/lib/ldscripts/elf_k1om.xswe
%%TARGET%%/lib/ldscripts/elf_k1om.xu
%%TARGET%%/lib/ldscripts/elf_k1om.xw
%%TARGET%%/lib/ldscripts/elf_k1om.xwe
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.x
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xbn
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xc
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xce
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xd
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xdc
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xdce
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xde
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xdw
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xdwe
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xe
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xn
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xr
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xs
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xsc
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xsce
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xse
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xsw
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xswe
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xu
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xw
%%TARGET%%/lib/ldscripts/elf_l1om_fbsd.xwe
%%TARGET%%/lib/ldscripts/elf_l1om.x
%%TARGET%%/lib/ldscripts/elf_l1om.xbn
%%TARGET%%/lib/ldscripts/elf_l1om.xc
%%TARGET%%/lib/ldscripts/elf_l1om.xce
%%TARGET%%/lib/ldscripts/elf_l1om.xd
%%TARGET%%/lib/ldscripts/elf_l1om.xdc
%%TARGET%%/lib/ldscripts/elf_l1om.xdce
%%TARGET%%/lib/ldscripts/elf_l1om.xde
%%TARGET%%/lib/ldscripts/elf_l1om.xdw
%%TARGET%%/lib/ldscripts/elf_l1om.xdwe
%%TARGET%%/lib/ldscripts/elf_l1om.xe
%%TARGET%%/lib/ldscripts/elf_l1om.xn
%%TARGET%%/lib/ldscripts/elf_l1om.xr
%%TARGET%%/lib/ldscripts/elf_l1om.xs
%%TARGET%%/lib/ldscripts/elf_l1om.xsc
%%TARGET%%/lib/ldscripts/elf_l1om.xsce
%%TARGET%%/lib/ldscripts/elf_l1om.xse
%%TARGET%%/lib/ldscripts/elf_l1om.xsw
%%TARGET%%/lib/ldscripts/elf_l1om.xswe
%%TARGET%%/lib/ldscripts/elf_l1om.xu
%%TARGET%%/lib/ldscripts/elf_l1om.xw
%%TARGET%%/lib/ldscripts/elf_l1om.xwe
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.x
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xbn
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xc
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xce
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xd
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xdc
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xdce
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xde
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xdw
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xdwe
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xe
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xn
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xr
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xs
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xsc
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xsce
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xse
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xsw
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xswe
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xu
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xw
%%TARGET%%/lib/ldscripts/elf_x86_64_fbsd.xwe
%%TARGET%%/lib/ldscripts/elf_x86_64.x
%%TARGET%%/lib/ldscripts/elf_x86_64.xbn
%%TARGET%%/lib/ldscripts/elf_x86_64.xc
%%TARGET%%/lib/ldscripts/elf_x86_64.xce
%%TARGET%%/lib/ldscripts/elf_x86_64.xd
%%TARGET%%/lib/ldscripts/elf_x86_64.xdc
%%TARGET%%/lib/ldscripts/elf_x86_64.xdce
%%TARGET%%/lib/ldscripts/elf_x86_64.xde
%%TARGET%%/lib/ldscripts/elf_x86_64.xdw
%%TARGET%%/lib/ldscripts/elf_x86_64.xdwe
%%TARGET%%/lib/ldscripts/elf_x86_64.xe
%%TARGET%%/lib/ldscripts/elf_x86_64.xn
%%TARGET%%/lib/ldscripts/elf_x86_64.xr
%%TARGET%%/lib/ldscripts/elf_x86_64.xs
%%TARGET%%/lib/ldscripts/elf_x86_64.xsc
%%TARGET%%/lib/ldscripts/elf_x86_64.xsce
%%TARGET%%/lib/ldscripts/elf_x86_64.xse
%%TARGET%%/lib/ldscripts/elf_x86_64.xsw
%%TARGET%%/lib/ldscripts/elf_x86_64.xswe
%%TARGET%%/lib/ldscripts/elf_x86_64.xu
%%TARGET%%/lib/ldscripts/elf_x86_64.xw
%%TARGET%%/lib/ldscripts/elf_x86_64.xwe
@dirrm %%TARGET%%/bin
@dirrm %%TARGET%%/lib/ldscripts
@dirrm %%TARGET%%/lib
@dirrm %%TARGET%%
man/man1/gwindmc.1.gz
man/man1/gwindres.1.gz
share/info/as.info
share/info/bfd.info
share/info/binutils.info
share/info/gprof.info
share/info/ld.info
x86_64-freebsd/bin/ar
x86_64-freebsd/bin/as
x86_64-freebsd/bin/ld
x86_64-freebsd/bin/ld.bfd
x86_64-freebsd/bin/nm
x86_64-freebsd/bin/objcopy
x86_64-freebsd/bin/objdump
x86_64-freebsd/bin/ranlib
x86_64-freebsd/bin/readelf
x86_64-freebsd/bin/strip
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.x
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xbn
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xc
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xce
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xd
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xdc
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xdce
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xde
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xdw
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xdwe
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xe
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xn
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xr
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xs
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xsc
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xsce
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xse
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xsw
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xswe
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xu
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xw
x86_64-freebsd/lib/ldscripts/elf_i386_fbsd.xwe
x86_64-freebsd/lib/ldscripts/elf_i386.x
x86_64-freebsd/lib/ldscripts/elf_i386.xbn
x86_64-freebsd/lib/ldscripts/elf_i386.xc
x86_64-freebsd/lib/ldscripts/elf_i386.xce
x86_64-freebsd/lib/ldscripts/elf_i386.xd
x86_64-freebsd/lib/ldscripts/elf_i386.xdc
x86_64-freebsd/lib/ldscripts/elf_i386.xdce
x86_64-freebsd/lib/ldscripts/elf_i386.xde
x86_64-freebsd/lib/ldscripts/elf_i386.xdw
x86_64-freebsd/lib/ldscripts/elf_i386.xdwe
x86_64-freebsd/lib/ldscripts/elf_i386.xe
x86_64-freebsd/lib/ldscripts/elf_i386.xn
x86_64-freebsd/lib/ldscripts/elf_i386.xr
x86_64-freebsd/lib/ldscripts/elf_i386.xs
x86_64-freebsd/lib/ldscripts/elf_i386.xsc
x86_64-freebsd/lib/ldscripts/elf_i386.xsce
x86_64-freebsd/lib/ldscripts/elf_i386.xse
x86_64-freebsd/lib/ldscripts/elf_i386.xsw
x86_64-freebsd/lib/ldscripts/elf_i386.xswe
x86_64-freebsd/lib/ldscripts/elf_i386.xu
x86_64-freebsd/lib/ldscripts/elf_i386.xw
x86_64-freebsd/lib/ldscripts/elf_i386.xwe
x86_64-freebsd/lib/ldscripts/elf_iamcu.x
x86_64-freebsd/lib/ldscripts/elf_iamcu.xbn
x86_64-freebsd/lib/ldscripts/elf_iamcu.xc
x86_64-freebsd/lib/ldscripts/elf_iamcu.xce
x86_64-freebsd/lib/ldscripts/elf_iamcu.xd
x86_64-freebsd/lib/ldscripts/elf_iamcu.xdc
x86_64-freebsd/lib/ldscripts/elf_iamcu.xdce
x86_64-freebsd/lib/ldscripts/elf_iamcu.xde
x86_64-freebsd/lib/ldscripts/elf_iamcu.xdw
x86_64-freebsd/lib/ldscripts/elf_iamcu.xdwe
x86_64-freebsd/lib/ldscripts/elf_iamcu.xe
x86_64-freebsd/lib/ldscripts/elf_iamcu.xn
x86_64-freebsd/lib/ldscripts/elf_iamcu.xr
x86_64-freebsd/lib/ldscripts/elf_iamcu.xs
x86_64-freebsd/lib/ldscripts/elf_iamcu.xsc
x86_64-freebsd/lib/ldscripts/elf_iamcu.xsce
x86_64-freebsd/lib/ldscripts/elf_iamcu.xse
x86_64-freebsd/lib/ldscripts/elf_iamcu.xsw
x86_64-freebsd/lib/ldscripts/elf_iamcu.xswe
x86_64-freebsd/lib/ldscripts/elf_iamcu.xu
x86_64-freebsd/lib/ldscripts/elf_iamcu.xw
x86_64-freebsd/lib/ldscripts/elf_iamcu.xwe
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.x
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xbn
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xc
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xce
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xd
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xdc
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xdce
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xde
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xdw
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xdwe
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xe
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xn
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xr
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xs
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xsc
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xsce
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xse
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xsw
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xswe
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xu
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xw
x86_64-freebsd/lib/ldscripts/elf_k1om_fbsd.xwe
x86_64-freebsd/lib/ldscripts/elf_k1om.x
x86_64-freebsd/lib/ldscripts/elf_k1om.xbn
x86_64-freebsd/lib/ldscripts/elf_k1om.xc
x86_64-freebsd/lib/ldscripts/elf_k1om.xce
x86_64-freebsd/lib/ldscripts/elf_k1om.xd
x86_64-freebsd/lib/ldscripts/elf_k1om.xdc
x86_64-freebsd/lib/ldscripts/elf_k1om.xdce
x86_64-freebsd/lib/ldscripts/elf_k1om.xde
x86_64-freebsd/lib/ldscripts/elf_k1om.xdw
x86_64-freebsd/lib/ldscripts/elf_k1om.xdwe
x86_64-freebsd/lib/ldscripts/elf_k1om.xe
x86_64-freebsd/lib/ldscripts/elf_k1om.xn
x86_64-freebsd/lib/ldscripts/elf_k1om.xr
x86_64-freebsd/lib/ldscripts/elf_k1om.xs
x86_64-freebsd/lib/ldscripts/elf_k1om.xsc
x86_64-freebsd/lib/ldscripts/elf_k1om.xsce
x86_64-freebsd/lib/ldscripts/elf_k1om.xse
x86_64-freebsd/lib/ldscripts/elf_k1om.xsw
x86_64-freebsd/lib/ldscripts/elf_k1om.xswe
x86_64-freebsd/lib/ldscripts/elf_k1om.xu
x86_64-freebsd/lib/ldscripts/elf_k1om.xw
x86_64-freebsd/lib/ldscripts/elf_k1om.xwe
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.x
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xbn
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xc
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xce
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xd
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xdc
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xdce
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xde
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xdw
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xdwe
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xe
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xn
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xr
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xs
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xsc
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xsce
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xse
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xsw
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xswe
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xu
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xw
x86_64-freebsd/lib/ldscripts/elf_l1om_fbsd.xwe
x86_64-freebsd/lib/ldscripts/elf_l1om.x
x86_64-freebsd/lib/ldscripts/elf_l1om.xbn
x86_64-freebsd/lib/ldscripts/elf_l1om.xc
x86_64-freebsd/lib/ldscripts/elf_l1om.xce
x86_64-freebsd/lib/ldscripts/elf_l1om.xd
x86_64-freebsd/lib/ldscripts/elf_l1om.xdc
x86_64-freebsd/lib/ldscripts/elf_l1om.xdce
x86_64-freebsd/lib/ldscripts/elf_l1om.xde
x86_64-freebsd/lib/ldscripts/elf_l1om.xdw
x86_64-freebsd/lib/ldscripts/elf_l1om.xdwe
x86_64-freebsd/lib/ldscripts/elf_l1om.xe
x86_64-freebsd/lib/ldscripts/elf_l1om.xn
x86_64-freebsd/lib/ldscripts/elf_l1om.xr
x86_64-freebsd/lib/ldscripts/elf_l1om.xs
x86_64-freebsd/lib/ldscripts/elf_l1om.xsc
x86_64-freebsd/lib/ldscripts/elf_l1om.xsce
x86_64-freebsd/lib/ldscripts/elf_l1om.xse
x86_64-freebsd/lib/ldscripts/elf_l1om.xsw
x86_64-freebsd/lib/ldscripts/elf_l1om.xswe
x86_64-freebsd/lib/ldscripts/elf_l1om.xu
x86_64-freebsd/lib/ldscripts/elf_l1om.xw
x86_64-freebsd/lib/ldscripts/elf_l1om.xwe
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.x
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xbn
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xc
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xce
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xd
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xdc
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xdce
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xde
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xdw
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xdwe
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xe
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xn
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xr
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xs
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xsc
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xsce
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xse
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xsw
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xswe
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xu
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xw
x86_64-freebsd/lib/ldscripts/elf_x86_64_fbsd.xwe
x86_64-freebsd/lib/ldscripts/elf_x86_64.x
x86_64-freebsd/lib/ldscripts/elf_x86_64.xbn
x86_64-freebsd/lib/ldscripts/elf_x86_64.xc
x86_64-freebsd/lib/ldscripts/elf_x86_64.xce
x86_64-freebsd/lib/ldscripts/elf_x86_64.xd
x86_64-freebsd/lib/ldscripts/elf_x86_64.xdc
x86_64-freebsd/lib/ldscripts/elf_x86_64.xdce
x86_64-freebsd/lib/ldscripts/elf_x86_64.xde
x86_64-freebsd/lib/ldscripts/elf_x86_64.xdw
x86_64-freebsd/lib/ldscripts/elf_x86_64.xdwe
x86_64-freebsd/lib/ldscripts/elf_x86_64.xe
x86_64-freebsd/lib/ldscripts/elf_x86_64.xn
x86_64-freebsd/lib/ldscripts/elf_x86_64.xr
x86_64-freebsd/lib/ldscripts/elf_x86_64.xs
x86_64-freebsd/lib/ldscripts/elf_x86_64.xsc
x86_64-freebsd/lib/ldscripts/elf_x86_64.xsce
x86_64-freebsd/lib/ldscripts/elf_x86_64.xse
x86_64-freebsd/lib/ldscripts/elf_x86_64.xsw
x86_64-freebsd/lib/ldscripts/elf_x86_64.xswe
x86_64-freebsd/lib/ldscripts/elf_x86_64.xu
x86_64-freebsd/lib/ldscripts/elf_x86_64.xw
x86_64-freebsd/lib/ldscripts/elf_x86_64.xwe
@dir x86_64-freebsd/bin
@dir x86_64-freebsd/lib/ldscripts
@dir x86_64-freebsd/lib
@dir x86_64-freebsd

View File

@@ -1,116 +0,0 @@
%%TARGET%%/bin/ar
%%TARGET%%/bin/as
%%TARGET%%/bin/ld
%%TARGET%%/bin/ld.bfd
%%TARGET%%/bin/nm
%%TARGET%%/bin/objcopy
%%TARGET%%/bin/objdump
%%TARGET%%/bin/ranlib
%%TARGET%%/bin/readelf
%%TARGET%%/bin/strip
%%TARGET%%/lib/ldscripts/armelf_fbsd.x
%%TARGET%%/lib/ldscripts/armelf_fbsd.xbn
%%TARGET%%/lib/ldscripts/armelf_fbsd.xc
%%TARGET%%/lib/ldscripts/armelf_fbsd.xce
%%TARGET%%/lib/ldscripts/armelf_fbsd.xd
%%TARGET%%/lib/ldscripts/armelf_fbsd.xdc
%%TARGET%%/lib/ldscripts/armelf_fbsd.xdce
%%TARGET%%/lib/ldscripts/armelf_fbsd.xde
%%TARGET%%/lib/ldscripts/armelf_fbsd.xdw
%%TARGET%%/lib/ldscripts/armelf_fbsd.xdwe
%%TARGET%%/lib/ldscripts/armelf_fbsd.xe
%%TARGET%%/lib/ldscripts/armelf_fbsd.xn
%%TARGET%%/lib/ldscripts/armelf_fbsd.xr
%%TARGET%%/lib/ldscripts/armelf_fbsd.xs
%%TARGET%%/lib/ldscripts/armelf_fbsd.xsc
%%TARGET%%/lib/ldscripts/armelf_fbsd.xsce
%%TARGET%%/lib/ldscripts/armelf_fbsd.xse
%%TARGET%%/lib/ldscripts/armelf_fbsd.xsw
%%TARGET%%/lib/ldscripts/armelf_fbsd.xswe
%%TARGET%%/lib/ldscripts/armelf_fbsd.xu
%%TARGET%%/lib/ldscripts/armelf_fbsd.xw
%%TARGET%%/lib/ldscripts/armelf_fbsd.xwe
%%TARGET%%/lib/ldscripts/armelf.x
%%TARGET%%/lib/ldscripts/armelf.xbn
%%TARGET%%/lib/ldscripts/armelf.xc
%%TARGET%%/lib/ldscripts/armelf.xce
%%TARGET%%/lib/ldscripts/armelf.xd
%%TARGET%%/lib/ldscripts/armelf.xdc
%%TARGET%%/lib/ldscripts/armelf.xdce
%%TARGET%%/lib/ldscripts/armelf.xde
%%TARGET%%/lib/ldscripts/armelf.xdw
%%TARGET%%/lib/ldscripts/armelf.xdwe
%%TARGET%%/lib/ldscripts/armelf.xe
%%TARGET%%/lib/ldscripts/armelf.xn
%%TARGET%%/lib/ldscripts/armelf.xr
%%TARGET%%/lib/ldscripts/armelf.xs
%%TARGET%%/lib/ldscripts/armelf.xsc
%%TARGET%%/lib/ldscripts/armelf.xsce
%%TARGET%%/lib/ldscripts/armelf.xse
%%TARGET%%/lib/ldscripts/armelf.xsw
%%TARGET%%/lib/ldscripts/armelf.xswe
%%TARGET%%/lib/ldscripts/armelf.xu
%%TARGET%%/lib/ldscripts/armelf.xw
%%TARGET%%/lib/ldscripts/armelf.xwe
%%TARGET%%/lib/ldscripts/armelfb_fbsd.x
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xbn
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xc
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xce
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xd
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xdc
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xdce
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xde
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xdw
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xdwe
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xe
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xn
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xr
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xs
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xsc
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xsce
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xse
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xsw
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xswe
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xu
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xw
%%TARGET%%/lib/ldscripts/armelfb_fbsd.xwe
bin/gaddr2line
bin/gar
bin/gas
bin/gc++filt
bin/gelfedit
bin/ggprof
bin/gld
bin/gld.bfd
bin/gnm
bin/gobjcopy
bin/gobjdump
bin/granlib
bin/greadelf
bin/gsize
bin/gstrings
bin/gstrip
info/as.info
info/bfd.info
info/binutils.info
info/gprof.info
info/ld.info
man/man1/gaddr2line.1.gz
man/man1/gar.1.gz
man/man1/gas.1.gz
man/man1/gc++filt.1.gz
man/man1/gelfedit.1.gz
man/man1/ggprof.1.gz
man/man1/gld.1.gz
man/man1/gnm.1.gz
man/man1/gobjcopy.1.gz
man/man1/gobjdump.1.gz
man/man1/granlib.1.gz
man/man1/greadelf.1.gz
man/man1/gsize.1.gz
man/man1/gstrings.1.gz
man/man1/gstrip.1.gz
@dirrm %%TARGET%%/bin
@dirrm %%TARGET%%/lib/ldscripts
@dirrm %%TARGET%%/lib
@dirrm %%TARGET%%

View File

@@ -1,122 +0,0 @@
bin/gaddr2line
bin/gar
bin/gas
bin/gc++filt
bin/gelfedit
bin/ggprof
bin/gld
bin/gld.bfd
bin/gnm
bin/gobjcopy
bin/gobjdump
bin/granlib
bin/greadelf
bin/gsize
bin/gstrings
bin/gstrip
%%TARGET%%/bin/ar
%%TARGET%%/bin/as
%%TARGET%%/bin/ld
%%TARGET%%/bin/ld.bfd
%%TARGET%%/bin/nm
%%TARGET%%/bin/objcopy
%%TARGET%%/bin/objdump
%%TARGET%%/bin/ranlib
%%TARGET%%/bin/readelf
%%TARGET%%/bin/strip
%%TARGET%%/lib/ldscripts/elf_i386.x
%%TARGET%%/lib/ldscripts/elf_i386.xbn
%%TARGET%%/lib/ldscripts/elf_i386.xc
%%TARGET%%/lib/ldscripts/elf_i386.xce
%%TARGET%%/lib/ldscripts/elf_i386.xd
%%TARGET%%/lib/ldscripts/elf_i386.xdc
%%TARGET%%/lib/ldscripts/elf_i386.xdce
%%TARGET%%/lib/ldscripts/elf_i386.xde
%%TARGET%%/lib/ldscripts/elf_i386.xdw
%%TARGET%%/lib/ldscripts/elf_i386.xdwe
%%TARGET%%/lib/ldscripts/elf_i386.xe
%%TARGET%%/lib/ldscripts/elf_i386.xn
%%TARGET%%/lib/ldscripts/elf_i386.xr
%%TARGET%%/lib/ldscripts/elf_i386.xs
%%TARGET%%/lib/ldscripts/elf_i386.xsc
%%TARGET%%/lib/ldscripts/elf_i386.xsce
%%TARGET%%/lib/ldscripts/elf_i386.xse
%%TARGET%%/lib/ldscripts/elf_i386.xsw
%%TARGET%%/lib/ldscripts/elf_i386.xswe
%%TARGET%%/lib/ldscripts/elf_i386.xu
%%TARGET%%/lib/ldscripts/elf_i386.xw
%%TARGET%%/lib/ldscripts/elf_i386.xwe
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.x
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xbn
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xc
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xce
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xd
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdc
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdce
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xde
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdw
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xdwe
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xe
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xn
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xr
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xs
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xsc
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xsce
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xse
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xsw
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xswe
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xu
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xw
%%TARGET%%/lib/ldscripts/elf_i386_fbsd.xwe
%%TARGET%%/lib/ldscripts/elf_iamcu.x
%%TARGET%%/lib/ldscripts/elf_iamcu.xbn
%%TARGET%%/lib/ldscripts/elf_iamcu.xc
%%TARGET%%/lib/ldscripts/elf_iamcu.xce
%%TARGET%%/lib/ldscripts/elf_iamcu.xd
%%TARGET%%/lib/ldscripts/elf_iamcu.xdc
%%TARGET%%/lib/ldscripts/elf_iamcu.xdce
%%TARGET%%/lib/ldscripts/elf_iamcu.xde
%%TARGET%%/lib/ldscripts/elf_iamcu.xdw
%%TARGET%%/lib/ldscripts/elf_iamcu.xdwe
%%TARGET%%/lib/ldscripts/elf_iamcu.xe
%%TARGET%%/lib/ldscripts/elf_iamcu.xn
%%TARGET%%/lib/ldscripts/elf_iamcu.xr
%%TARGET%%/lib/ldscripts/elf_iamcu.xs
%%TARGET%%/lib/ldscripts/elf_iamcu.xsc
%%TARGET%%/lib/ldscripts/elf_iamcu.xsce
%%TARGET%%/lib/ldscripts/elf_iamcu.xse
%%TARGET%%/lib/ldscripts/elf_iamcu.xsw
%%TARGET%%/lib/ldscripts/elf_iamcu.xswe
%%TARGET%%/lib/ldscripts/elf_iamcu.xu
%%TARGET%%/lib/ldscripts/elf_iamcu.xw
%%TARGET%%/lib/ldscripts/elf_iamcu.xwe
%%TARGET%%/lib/ldscripts/i386bsd.x
%%TARGET%%/lib/ldscripts/i386bsd.xbn
%%TARGET%%/lib/ldscripts/i386bsd.xe
%%TARGET%%/lib/ldscripts/i386bsd.xn
%%TARGET%%/lib/ldscripts/i386bsd.xr
%%TARGET%%/lib/ldscripts/i386bsd.xu
info/as.info
info/bfd.info
info/binutils.info
info/gprof.info
info/ld.info
man/man1/gaddr2line.1.gz
man/man1/gar.1.gz
man/man1/gas.1.gz
man/man1/gc++filt.1.gz
man/man1/gelfedit.1.gz
man/man1/ggprof.1.gz
man/man1/gld.1.gz
man/man1/gnm.1.gz
man/man1/gobjcopy.1.gz
man/man1/gobjdump.1.gz
man/man1/granlib.1.gz
man/man1/greadelf.1.gz
man/man1/gsize.1.gz
man/man1/gstrings.1.gz
man/man1/gstrip.1.gz
@dirrm %%TARGET%%/bin
@dirrm %%TARGET%%/lib/ldscripts
@dirrm %%TARGET%%/lib
@dirrm %%TARGET%%