+2015-01-23 Ian Lance Taylor <iant@google.com>
+
+ PR go/63565
+ * gccgo.texi (Invoking gccgo): Mention that Go programs should not
+ be stripped.
+
+ * gccgo.texi (C Interoperability): Mention that people should use
+ cgo.
+
2015-01-23 Ian Lance Taylor <iant@google.com>
PR go/64595
is later linked, the compiled form of the package must be included in
the link command.
+Go programs must generally be compiled with debugging information, and
+@option{-g1} is the default as described below. Stripping a Go
+program will generally cause it to misbehave or fail.
+
@c man end
@c man begin OPTIONS gccgo
When using @command{gccgo} there is limited interoperability with C,
or with C++ code compiled using @code{extern "C"}.
+This information is provided largely for documentation purposes. For
+ordinary use it is best to build programs with the go tool and then
+use @code{import "C"}, as described at
+@url{http://golang.org/cmd/cgo}.
+
@menu
* C Type Interoperability:: How C and Go types match up.
* Function Names:: How Go functions are named.