gcc/libiberty
Alex Samuel d01ce591e5 cp-demangle.c (result_add_separated_char): Change parameter to int.
* cp-demangle.c (result_add_separated_char): Change parameter to
	int.
	(substitution_add): Don't check for duplicates.  Check if
	previously allocated size is zero.
	(demangle_name): Remove duplicate check for std substitution.
	Clear template flag appropriately.
	(demangle_prefix): Remove argument to demangle_substitution.
	Don't check that template flag is already set.
	(demangle_operator_name): Add pt operator.
	(demangle_type): Don't treat r as built-in type.  Remove argument
	to demangle_substitution.  Fix substitution candidate mechanics.
	Handle <template-template-parm>s.  Improve comments.
	(demangle_template_param): Don't handle template arg lists here.
	(demangle_substitution): Remove parameter.
	(print_usage): Remove extra fprintf option.

From-SVN: r35995
2000-08-25 22:52:25 +00:00
..
config mh-openedition.h: Added -DLE370 definition. 2000-07-26 20:00:36 -06:00
testsuite
acconfig.h
aclocal.m4 aclocal.m4 (libiberty_AC_DECLARE_ERRNO): New macro. 2000-07-23 10:05:03 -06:00
alloca-conf.h
alloca.c
argv.c
asprintf.c
atexit.c
basename.c
bcmp.c
bcopy.c
bzero.c
calloc.c
ChangeLog cp-demangle.c (result_add_separated_char): Change parameter to int. 2000-08-25 22:52:25 +00:00
choose-temp.c
clock.c
concat.c
config.h-vms
config.in configure.in (AC_CHECK_HEADERS): Add time.h. 2000-07-23 13:18:32 -06:00
config.table
configure configure.in (AC_CHECK_HEADERS): Add time.h. 2000-07-23 13:18:32 -06:00
configure.in configure.in (AC_CHECK_HEADERS): Add time.h. 2000-07-23 13:18:32 -06:00
COPYING.LIB
copysign.c
cp-demangle.c cp-demangle.c (result_add_separated_char): Change parameter to int. 2000-08-25 22:52:25 +00:00
cplus-dem.c cplus-dem.c (cplus_demangle_opname, [...]): Use ARRAY_SIZE. 2000-08-24 20:29:48 +00:00
dyn-string.c
fdmatch.c
floatformat.c
fnmatch.c
getcwd.c getcwd.c: Include string.h, stdlib.h for prototypes 2000-07-26 17:29:55 -06:00
getopt1.c
getopt.c
getpagesize.c
getpwd.c
getruntime.c configure.in (AC_CHECK_HEADERS): Add time.h. 2000-07-23 13:18:32 -06:00
hashtab.c
hex.c
index.c
insque.c
Makefile.in Makefile.in (rename.o, waitpid.o): Depend on config.h 2000-07-26 17:23:24 -06:00
makefile.vms
memchr.c
memcmp.c
memcpy.c
memmove.c
memset.c
mkstemps.c * cp-demangle.c, mkstemps.c: #include <sys/types.h>. 2000-07-23 09:57:38 -06:00
mpw-config.in
mpw-make.sed
mpw.c
msdos.c
objalloc.c
obstack.c
partition.c
pexecute.c * pexecute.c: Don't use vfork. Initialize 'pid' before retry loop. 2000-08-02 22:03:53 +00:00
putenv.c
random.c * libiberty/random.c (end_ptr): Revert previous change. 2000-08-24 22:44:37 +00:00
README
rename.c Makefile.in (rename.o, waitpid.o): Depend on config.h 2000-07-26 17:23:24 -06:00
rindex.c
setenv.c Warning fixes: 2000-07-21 20:08:36 +00:00
sigsetmask.c Warning fixes: 2000-07-21 20:08:36 +00:00
sort.c configure.in (AC_CHECK_HEADERS): Add limits.h. 2000-07-23 13:13:46 -06:00
spaces.c
splay-tree.c
strcasecmp.c
strchr.c
strdup.c
strerror.c
strncasecmp.c
strncmp.c
strrchr.c
strsignal.c
strstr.c
strtod.c
strtol.c configure.in (AC_CHECK_HEADERS): Add limits.h. 2000-07-23 13:13:46 -06:00
strtoul.c configure.in (AC_CHECK_HEADERS): Add limits.h. 2000-07-23 13:13:46 -06:00
tmpnam.c
vasprintf.c Warning fixes: 2000-07-21 20:08:36 +00:00
vfork.c Warning fixes: 2000-07-21 20:08:36 +00:00
vfprintf.c
vmsbuild.com
vprintf.c
vsprintf.c
waitpid.c Makefile.in (rename.o, waitpid.o): Depend on config.h 2000-07-26 17:23:24 -06:00
xatexit.c
xexit.c Warning fixes: 2000-07-21 20:08:36 +00:00
xmalloc.c
xmemdup.c
xstrdup.c
xstrerror.c

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 and fixes to "bug-gnu-utils@prep.ai.mit.edu".  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 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.

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

    * 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.

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.