Linking Go Programs
In this lesson, you'll learn about linking the Go programs.
We'll cover the following...
To build programs, we need to link these packages. The go build command builds the packages and links them into an executable. In this lesson we will examine this process. We will also take a pick into the idea of embedding extra information into Go programs.
Linking Go programs
The go build command linked our multi-git program, too. Linking means taking all the packages that were built or cached (the pkg.a files) and combining them into a single executable. First, some debug information is created because it’s a debug build.
## # github.com/the-gigi/multi-git
#
mkdir -p
...