diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -64,6 +64,15 @@ Follow Golang's standard process for installing. It will install the command into the location pointed to by the GOBIN environment variable or its default value. +On Slackware , you want to install programs from third parties under +the '/usr/local' location. + +As root: + ``` -go install ./cmd/slackware.com +GOBIN=/usr/local/bin \ + go install -tags=netcgo ./cmd/slackware.com ``` + +'-tags=netcgo' makes DNS resolution much more reliable by using the +systems native DNS resolver. |