]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - libiberty/README
Remove tui_initialize_static_data
[thirdparty/binutils-gdb.git] / libiberty / README
index 9f5226a6b1dd31022a3a887595190993412b6312..9f1cc979e49b27421c1b361d6461fa6ea87841d2 100644 (file)
@@ -15,7 +15,8 @@ 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.
+Please report bugs to "gcc-bugs@gcc.gnu.org" and send fixes to
+"gcc-patches@gcc.gnu.org".  Thank you.
 
 ADDING A NEW FILE
 =================
@@ -24,16 +25,17 @@ 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
+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.
+    * 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.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
@@ -47,6 +49,11 @@ name of the function must be the same as the name of the file.
       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.