Golang 未定义
Golang Undefined
我正在尝试用 Go 编译我的应用程序,但出现以下错误:
C:\Users\Root\go\src\github.com\ussssseeeeeeerrr\test> go build
# github.com/facebookgo/grace/gracehttp
..\..\facebookgo\grace\gracehttp\http.go:104:53: undefined: syscall.SIGUSR2
..\..\facebookgo\grace\gracehttp\http.go:114:8: undefined: syscall.SIGUSR2
..\..\facebookgo\grace\gracehttp\http.go:154:13: undefined: syscall.Kill
# github.com/ussssseeeeeeerrr/test/models
C:\Go\src\github.com\ussssseeeeeeerrr\test\models\setup.go:24:2: undefined: runner.MustPing
我不确定我做错了什么。
http.go {第 104 行}:
signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM, syscall.SIGUSR2)
http.go {第 114 行}:
case syscall.SIGUSR2:
http.go {第 154 行}:
if err := syscall.Kill(ppid, syscall.SIGTERM); err != nil {
Import() 部分:
"bytes"
"crypto/tls"
"fmt"
"log"
"net"
"net/http"
"os"
"os/signal"
"sync"
"syscall"
"github.com/facebookgo/grace/gracenet"
"github.com/facebookgo/httpdown"
setup.go {第 24 行}:
runner.MustPing(db)
导入()部分:
runner "gopkg.in/mgutz/dat.v1/sqlx-runner"
第一个问题的解法:
Gracehttp 根本不支持 windows。切换到我的另一个 OS 解决了编译问题。
第二题解法:
sqlx runner 已过时。切换到更新的替代方案。
我正在尝试用 Go 编译我的应用程序,但出现以下错误:
C:\Users\Root\go\src\github.com\ussssseeeeeeerrr\test> go build
# github.com/facebookgo/grace/gracehttp
..\..\facebookgo\grace\gracehttp\http.go:104:53: undefined: syscall.SIGUSR2
..\..\facebookgo\grace\gracehttp\http.go:114:8: undefined: syscall.SIGUSR2
..\..\facebookgo\grace\gracehttp\http.go:154:13: undefined: syscall.Kill
# github.com/ussssseeeeeeerrr/test/models
C:\Go\src\github.com\ussssseeeeeeerrr\test\models\setup.go:24:2: undefined: runner.MustPing
我不确定我做错了什么。
http.go {第 104 行}:
signal.Notify(ch, syscall.SIGINT, syscall.SIGTERM, syscall.SIGUSR2)
http.go {第 114 行}:
case syscall.SIGUSR2:
http.go {第 154 行}:
if err := syscall.Kill(ppid, syscall.SIGTERM); err != nil {
Import() 部分:
"bytes"
"crypto/tls"
"fmt"
"log"
"net"
"net/http"
"os"
"os/signal"
"sync"
"syscall"
"github.com/facebookgo/grace/gracenet"
"github.com/facebookgo/httpdown"
setup.go {第 24 行}:
runner.MustPing(db)
导入()部分:
runner "gopkg.in/mgutz/dat.v1/sqlx-runner"
第一个问题的解法:
Gracehttp 根本不支持 windows。切换到我的另一个 OS 解决了编译问题。
第二题解法:
sqlx runner 已过时。切换到更新的替代方案。