README 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. See ../README.
  2. This is the runtime support library for the Go programming language.
  3. This library is intended for use with the Go frontend.
  4. This library should not be stripped when it is installed. Go code
  5. relies on being able to look up file/line information, which comes
  6. from the debugging info using the libbacktrace library.
  7. The library has only been tested on GNU/Linux using glibc, and on
  8. Solaris. It should not be difficult to port to other operating
  9. systems.
  10. Directories:
  11. go
  12. A copy of the Go library from http://golang.org/, with several
  13. changes for gccgo.
  14. runtime
  15. Runtime functions, written in C, which are called directly by the
  16. compiler or by the library.
  17. Contributing
  18. ============
  19. To contribute patches to the files in this directory, please see
  20. http://golang.org/doc/gccgo_contribute.html .
  21. The master copy of these files is hosted at
  22. http://code.google.com/p/gofrontend . Changes to these files require
  23. signing a Google contributor license agreement. If you are the
  24. copyright holder, you will need to agree to the individual contributor
  25. license agreement at
  26. http://code.google.com/legal/individual-cla-v1.0.html. This agreement
  27. can be completed online.
  28. If your organization is the copyright holder, the organization will
  29. need to agree to the corporate contributor license agreement at
  30. http://code.google.com/legal/corporate-cla-v1.0.html.
  31. If the copyright holder for your code has already completed the
  32. agreement in connection with another Google open source project, it
  33. does not need to be completed again.