2
嘗試構建運行http服務器的go程序的靜態鏈接版本,並使用net程序包確定並解析傳入請求的IP地址。有了這個構建聲明:未使用1.4.2靜態鏈接的Go程序
CGO_ENABLED=0 go install -a -ldflags '-s' .
這序言中我的程序:
package main
import (
"encoding/json"
"errors"
"fmt"
"log"
"net"
"net/http"
"path/filepath"
"strings"
"golang.org/x/blog/content/context/userip"
"github.com/oschwald/maxminddb-golang"
)
這曾與去1.3,產生一個靜態鏈接程序建設,但不走的工作1.4.2。構建成功,但該程序不是靜態鏈接的。
有誰知道發生了什麼事?