• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

config/H22-Feb-2019-16,86914,030

go/H22-Feb-2019-670,860504,273

misc/cgo/H22-Feb-2019-16,67810,581

runtime/H22-Feb-2019-6,8044,595

testsuite/H22-Feb-2019-1,3011,037

LICENSEH A D06-Dec-20101.4 KiB2824

MERGEH A D31-May-2018156 53

Makefile.amH A D31-May-201843.3 KiB1,5761,318

Makefile.inH A D31-May-2018159.5 KiB3,5063,134

PATENTSH A D06-Dec-20101.3 KiB2320

READMEH A D13-Mar-20151.5 KiB4533

README.gccH A D09-Mar-2011357 86

VERSIONH A D13-Jun-20189 21

aclocal.m4H A D13-Dec-201635.7 KiB1,003901

config.h.inH A D22-Jun-201811.1 KiB415281

configureH A D22-Jun-2018534.8 KiB18,20215,323

configure.acH A D22-Jun-201828.2 KiB935837

goarch.shH A D22-Feb-20184 KiB243209

godeps.shH A D09-Jan-2018909 3617

libgo.impH A D10-May-201754 75

match.shH A D22-Feb-20184 KiB198172

merge.shH A D09-Jan-20185.1 KiB224181

mkrsysinfo.shH A D14-Nov-20177.4 KiB201137

mksigtab.shH A D22-Nov-20175.8 KiB13497

mksysinfo.shH A D09-Nov-201846 KiB1,3361,035

mvifdiff.shH A D01-Dec-2014388 165

sysinfo.cH A D22-Jun-20186.2 KiB289264

README

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

README.gcc

1The files in this directory are mirrored from the gofrontend project
2hosted at http://code.google.com/p/gofrontend.  These files are the
3ones in the libgo subdirectory of that project.
4
5By default, the networking tests are not run.  In order to run all the
6libgo tests, you need to define the environment variable
7GCCGO_RUN_ALL_TESTS to a non-empty string.
8