README 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. BFD is an object file library. It permits applications to use the
  2. same routines to process object files regardless of their format.
  3. BFD is used by the GNU debugger, assembler, linker, and the binary
  4. utilities.
  5. The documentation on using BFD is scanty and may be occasionally
  6. incorrect. Pointers to documentation problems, or an entirely
  7. rewritten manual, would be appreciated.
  8. There is some BFD internals documentation in doc/bfdint.texi which may
  9. help programmers who want to modify BFD.
  10. BFD is normally built as part of another package. See the build
  11. instructions for that package, probably in a README file in the
  12. appropriate directory.
  13. BFD supports the following configure options:
  14. --target=TARGET
  15. The default target for which to build the library. TARGET is
  16. a configuration target triplet, such as sparc-sun-solaris.
  17. --enable-targets=TARGET,TARGET,TARGET...
  18. Additional targets the library should support. To include
  19. support for all known targets, use --enable-targets=all.
  20. --enable-64-bit-bfd
  21. Include support for 64 bit targets. This is automatically
  22. turned on if you explicitly request a 64 bit target, but not
  23. for --enable-targets=all. This requires a compiler with a 64
  24. bit integer type, such as gcc.
  25. --enable-shared
  26. Build BFD as a shared library.
  27. --with-mmap
  28. Use mmap when accessing files. This is faster on some hosts,
  29. but slower on others. It may not work on all hosts.
  30. Report bugs in BFD to https://sourceware.org/bugzilla/
  31. Patches are encouraged. When sending patches, always send the output
  32. of diff -u or diff -c from the original file to the new file. Do not
  33. send default diff output. Do not make the diff from the new file to
  34. the original file. Remember that any patch must not break other
  35. systems. Remember that BFD must support cross compilation from any
  36. host to any target, so patches which use ``#ifdef HOST'' are not
  37. acceptable. Please also read the ``Reporting Bugs'' section of the
  38. gcc manual.
  39. Bug reports without patches will be remembered, but they may never get
  40. fixed until somebody volunteers to fix them.
  41. Copyright (C) 2012-2022 Free Software Foundation, Inc.
  42. Copying and distribution of this file, with or without modification,
  43. are permitted in any medium without royalty provided the copyright
  44. notice and this notice are preserved.