Skip to content

Files

Latest commit

author
GCC Administrator
Nov 20, 2024
b597edb · Nov 20, 2024

History

History
This branch is 30 commits ahead of, 2371 commits behind gcc-mirror/gcc:master.

libiberty

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 6, 2001
Nov 16, 2024
Jan 18, 2011
May 10, 2005
Nov 20, 2024
Nov 11, 2014
Jan 3, 2024
Sep 22, 2022
Jan 3, 2024
Jan 3, 2024
Nov 30, 2023
May 10, 2022
Aug 5, 2024
Jan 3, 2024
Nov 14, 2022
Mar 26, 2005
Apr 16, 2005
Apr 2, 2005
Oct 26, 2006
Jun 26, 2020
Jun 26, 2020
Apr 2, 2005
May 10, 2022
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Sep 15, 2009
Nov 28, 2023
Dec 5, 2023
Dec 5, 2023
Sep 2, 2009
Jan 3, 2024
Mar 26, 2005
Oct 10, 2024
Jan 3, 2024
Jan 3, 2024
Oct 31, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Apr 2, 2024
Jan 3, 2024
Mar 27, 2005
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Feb 3, 2011
Jan 3, 2024
Nov 14, 2022
Jan 3, 2024
Mar 27, 2005
Jan 3, 2024
Jan 3, 2024
Mar 27, 2005
May 24, 2005
Jan 3, 2024
Mar 31, 2005
Feb 15, 2024
Jan 3, 2024
Apr 2, 2005
Feb 3, 2011
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jul 9, 2013
Jan 3, 2024
May 10, 2022
May 10, 2022
May 10, 2022
Jan 3, 2024
May 10, 2022
Jan 3, 2024
May 10, 2022
Jan 3, 2024
Aug 21, 1997
Jan 3, 2024
Jan 3, 2024
Mar 30, 2023
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Feb 19, 2024
Jan 3, 2024
Jan 3, 2024
Feb 3, 2011
Jan 3, 2024
Jan 3, 2024
May 10, 2022
Apr 2, 2024
Mar 28, 2005
Apr 2, 2005
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Nov 5, 2014
Nov 19, 2024
Jan 3, 2024
Sep 7, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Feb 3, 2011
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Jan 3, 2024
Mar 28, 2005
Mar 28, 2005
May 10, 2022
May 10, 2022
Mar 28, 2005
Feb 3, 2011
Jan 3, 2024
Sep 18, 2012
Mar 28, 2005
May 10, 2022
Apr 2, 2023
Jan 3, 2024
Feb 3, 2011
Oct 28, 2014
Mar 28, 2005
Oct 28, 2014
Jan 3, 2024
Jan 3, 2024
Mar 28, 2005
Jan 3, 2024
Jan 3, 2024
Mar 28, 2005
Jan 3, 2024
Feb 12, 2024
Jan 3, 2024
Feb 3, 2011
Jan 3, 2024
Jan 3, 2024
May 24, 2017
Jan 3, 2024
May 10, 2022
Jan 3, 2024
Jan 3, 2024
May 10, 2022
Oct 8, 2008
May 24, 2005
Jan 3, 2024
Jan 3, 2024
This directory contains the -liberty library of free software.
It is a collection of subroutines used by various GNU programs.
Current members include:

	getopt -- get options from command line
	obstack -- stacks of arbitrarily-sized objects
	strerror -- error message strings corresponding to errno
	strtol -- string-to-long conversion
	strtoul -- string-to-unsigned-long conversion

We expect many of the GNU subroutines that are floating around to
eventually arrive here.

The library must be configured from the top source directory.  Don't
try to run configure in this directory.  Follow the configuration
instructions in ../README.

Please report bugs to https://gcc.gnu.org/bugzilla/ and send fixes to
"[email protected]".  Thank you.

ADDING A NEW FILE
=================

There are two sets of files:  Those that are "required" will be
included in the library for all configurations, while those
that are "optional" will be included in the library only if "needed."

To add a new required file, edit Makefile.in to add the source file
name to CFILES and the object file to REQUIRED_OFILES.

To add a new optional file, it must provide a single function, and the
name of the function must be the same as the name of the file.

    * Add the source file name to CFILES in Makefile.in and the object
      file to CONFIGURED_OFILES.

    * Add the function to name to the funcs shell variable in
      configure.ac.

    * Add the function to the AC_CHECK_FUNCS lists just after the
      setting of the funcs shell variable.  These AC_CHECK_FUNCS calls
      are never executed; they are there to make autoheader work
      better.

    * Consider the special cases of building libiberty; as of this
      writing, the special cases are newlib and VxWorks.  If a
      particular special case provides the function, you do not need
      to do anything.  If it does not provide the function, add the
      object file to LIBOBJS, and add the function name to the case
      controlling whether to define HAVE_func.

Finally, in the build directory of libiberty, configure with
"--enable-maintainer-mode", run "make maint-deps" to update
Makefile.in, and run 'make stamp-functions' to regenerate
functions.texi.

The optional file you've added (e.g. getcwd.c) should compile and work
on all hosts where it is needed.  It does not have to work or even
compile on hosts where it is not needed.

ADDING A NEW CONFIGURATION
==========================

On most hosts you should be able to use the scheme for automatically
figuring out which files are needed.  In that case, you probably
don't need a special Makefile stub for that configuration.

If the fully automatic scheme doesn't work, you may be able to get
by with defining EXTRA_OFILES in your Makefile stub.  This is
a list of object file names that should be treated as required
for this configuration - they will be included in libiberty.a,
regardless of whatever might be in the C library.