> so go compiler generate what?!

https://golang.org/cmd/compile/

Compile, typically invoked as “go tool compile,” compiles a single Go
package comprising the files named on the command line. It then writes
a single object file named for the basename of the first source file
with a .o suffix. The object file can then be combined with other
objects into a package archive or passed directly to the linker (“go
tool link”). If invoked with -pack, the compiler writes an archive
directly, bypassing the intermediate object file.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to