URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [insight/] [libiberty/] [README] - Rev 1768
Go to most recent revision | Compare with Previous | Blame | View Log
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 lineobstack -- stacks of arbitrarily-sized objectsstrerror -- error message strings corresponding to errnostrtol -- string-to-long conversionstrtoul -- string-to-unsigned-long conversionWe expect many of the GNU subroutines that are floating around toeventually arrive here.The library must be configured from the top source directory. Don'ttry to run configure in this directory. Follow the configurationinstructions 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 beincluded in the library for all configurations, while thosethat are "optional" will be included in the library only if "needed."To add a new required file, edit Makefile to add the source filename to CFILES and the object file to REQUIRED_OFILES.To add a new optional file, it must provide a single function, and thename 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 inconfigure.in.* Add the function to the AC_CHECK_FUNCS lists just after thesetting of the funcs shell variable. These AC_CHECK_FUNCS callsare never executed; they are there to make autoheader workbetter.* Consider the special cases of building libiberty; as of thiswriting, the special cases are newlib and VxWorks. If aparticular special case provides the function, you do not needto do anything. If it does not provide the function, add theobject file to LIBOBJS, and add the function name to the casecontrolling whether to define HAVE_func.The optional file you've added (e.g. getcwd.c) should compile and workon all hosts where it is needed. It does not have to work or evencompile on hosts where it is not needed.ADDING A NEW CONFIGURATION==========================On most hosts you should be able to use the scheme for automaticallyfiguring out which files are needed. In that case, you probablydon't need a special Makefile stub for that configuration.If the fully automatic scheme doesn't work, you may be able to getby with defining EXTRA_OFILES in your Makefile stub. This isa list of object file names that should be treated as requiredfor this configuration - they will be included in libiberty.a,regardless of whatever might be in the C library.
Go to most recent revision | Compare with Previous | Blame | View Log
