Unofficial read-only mirror repository of the binutils-gdb project
  • C 50.4%
  • Makefile 22.7%
  • Assembly 13.2%
  • C++ 5.9%
  • Roff 1.5%
  • Other 5.7%
Find a file
Alan Modra 0a6aadacb2 filter_implib_symbols
This tidies filter_implib_symbols implementations, which I noticed
returned unsigned int but took long symbol counts.  While unsigned int
is very likely sufficient, size_t is better.

_bfd_elf_filter_global_symbols is a linker-only function so really
should be moved to elflink.c, but I left it in elf.c as it calls
sym_is_global, a static function in elf.c.

	* elf-bfd.h (struct elf_backend_data): Take size_t symcount
	and return a size_t from elf_backend_filter_implib_symbols.
	(_bfd_elf_filter_implib_symbols): Likewise.  Rename from
	_bfd_elf_filter_global_symbols.
	* elf.c (_bfd_elf_filter_implib_symbols): Likewise.  Use
	size_t vars too, and avoid unnecessary casts.
	* elf32-arm.c (elf32_arm_filter_cmse_symbols): Likewise.
	(elf32_arm_filter_implib_symbols): Likewise.
	* elflink.c (elf_output_implib): Avoid unneccesary casts.
	Call elf_backend_filter_implib_symbols uncontitionally.
	* elfxx-target.h (elf_backend_filter_implib_symbols): Define
	fallback as _bfd_elf_filter_implib_symbols.
2026-06-06 11:08:11 +09:30
bfd filter_implib_symbols 2026-06-06 11:08:11 +09:30
binutils restore KVX maintainer 2026-06-05 11:08:14 +02:00
config
contrib contrib: Make dg-extract-results.py tolerant of unparseable files 2026-05-29 17:28:56 -07:00
cpu
elfcpp gas, bfd, gold: Rename Arm v8/v9 architecture tags 2026-05-28 11:33:39 +00:00
etc
gas gas s_comm_internal uninitialised access 2026-06-06 11:05:45 +09:30
gdb Emit DWARF expressions from dwarf-to-dwarf-assembler.py 2026-06-05 15:11:26 -06:00
gdbserver Add two new warnings to warning.m4 2026-06-05 14:51:13 -06:00
gdbsupport Add two new warnings to warning.m4 2026-06-05 14:51:13 -06:00
gnulib
gold gas, bfd, gold: Rename Arm v8/v9 architecture tags 2026-05-28 11:33:39 +00:00
gprof gprof: Fix strchr discarded qualifier call 2026-05-04 05:47:56 +08:00
gprofng
include gas, bfd, gold: Rename Arm v8/v9 architecture tags 2026-05-28 11:33:39 +00:00
ld Drop output bfd param from many elf linker functions 2026-06-06 11:06:40 +09:30
libbacktrace
libctf libctf: Remove unused variable initialized to itself 2026-05-02 19:47:39 +09:30
libdecnumber
libiberty
libsframe
opcodes RISC-V: match_*() improvements 2026-06-05 11:09:38 +02:00
readline
sim
texinfo
zlib
.clang-format
.cvsignore add autom4te.cache to .cvsignore 2007-02-13 15:25:58 +00:00
.editorconfig
.gitattributes
.gitignore
.pre-commit-config.yaml [pre-commit] Make gdb/doc codespell-clean 2026-06-01 14:33:48 +02:00
ar-lib
ChangeLog
compile
config-ml.in
config.guess
config.rpath
config.sub
configure
configure.ac
COPYING
COPYING.LIB
COPYING.LIBGLOSS
COPYING.NEWLIB
COPYING3
COPYING3.LIB
depcomp
djunpack.bat * djunpack.bat: Use ".." quoting in Sed command, for the sake of 2009-03-27 13:37:09 +00:00
install-sh
libtool.m4 Binutils/GCC: Add clang LTO support to AR, NM and RANLIB 2025-09-25 12:30:13 +08:00
ltgcc.m4 * libtool.m4: Update to libtool 2.2.6. 2008-09-29 15:28:14 +00:00
ltmain.sh
ltoptions.m4
ltsugar.m4
ltversion.m4
lt~obsolete.m4
MAINTAINERS
Makefile.def
Makefile.in
Makefile.tpl Sync toplevel files from gcc 2025-10-02 07:42:18 +08:00
makefile.vms
missing
mkdep
mkinstalldirs
move-if-change Update `move-if-change' from gnulib 2014-11-16 17:04:02 +01:00
multilib.am
README
README-maintainer-mode Note that at least dejagnu version 1.5.3 is required in order to be ale to run the testsuites. 2022-10-04 10:54:19 +01:00
SECURITY.txt
setup.com
src-release.sh
symlink-tree
test-driver
ylwrap

		   README for GNU development tools

This directory contains various GNU compilers, assemblers, linkers, 
debuggers, etc., plus their support routines, definitions, and documentation.

If you are receiving this as part of a GDB release, see the file gdb/README.
If with a binutils release, see binutils/README, and so on. That'll give you
info about this package -- supported targets, how to use it, how to report
bugs, etc.

It is now possible to automatically configure and build a variety of
tools with one command.  To build all of the tools contained herein,
run the ``configure'' script here, e.g.:

	./configure 
	make

To install them (by default in /usr/local/bin, /usr/local/lib, etc),
then do:
	make install

(If the configure script can't determine your type of computer, give it
the name as an argument, for instance ``./configure sun4''.  You can
use the script ``config.sub'' to test whether a name is recognized; if
it is, config.sub translates it to a triplet specifying CPU, vendor,
and OS.)

If you have more than one compiler on your system, it is often best to
explicitly set CC in the environment before running configure, and to
also set CC when running make.  For example (assuming sh/bash/ksh):

	CC=gcc ./configure
	make

A similar example using csh:

	setenv CC gcc
	./configure
	make

Much of the code and documentation enclosed is copyright by
the Free Software Foundation, Inc.  See the file COPYING or
COPYING.LIB in the various directories, for a description of the
GNU General Public License terms under which you can copy the files.

REPORTING BUGS: Again, see gdb/README, binutils/README, etc., for info
on where and how to report problems.