-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Closed
Labels
Description
Coming from this issue: go-delve/delve#2187
What version of Go are you using (go version
)?
$ go version go version go1.15.2 linux/amd64
Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (go env
)?
go env
Output
$ go env GO111MODULE="" GOARCH="amd64" GOBIN="" GOCACHE="/home/ybochkarev/.cache/go-build" GOENV="/home/ybochkarev/.config/go/env" GOEXE="" GOFLAGS="" GOHOSTARCH="amd64" GOHOSTOS="linux" GOINSECURE="" GOMODCACHE="/home/ybochkarev/.gvm/pkgsets/go1.15.2/global/pkg/mod" GONOPROXY="" GONOSUMDB="" GOOS="linux" GOPATH="/home/ybochkarev/.gvm/pkgsets/go1.15.2/global" GOPRIVATE="" GOPROXY="https://proxy.golang.org,direct" GOROOT="/home/ybochkarev/.gvm/gos/go1.15.2" GOSUMDB="sum.golang.org" GOTMPDIR="" GOTOOLDIR="/home/ybochkarev/.gvm/gos/go1.15.2/pkg/tool/linux_amd64" GCCGO="gccgo" AR="ar" CC="gcc" CXX="g++" CGO_ENABLED="1" GOMOD="" CGO_CFLAGS="-g -O2" CGO_CPPFLAGS="" CGO_CXXFLAGS="-g -O2" CGO_FFLAGS="-g -O2" CGO_LDFLAGS="-g -O2" PKG_CONFIG="pkg-config" GOGCCFLAGS="-fPIC -m64 -pthread -fmessage-length=0 -fdebug-prefix-map=/tmp/go-build670122447=/tmp/go-build -gno-record-gcc-switches"
What did you do?
$ git clone --depth=1 https://github.com/cfdrake/go-gdbm && cd go-gdbm
$ go build # builds OK
$ go test -v
=== RUN TestVersion
--- PASS: TestVersion (0.00s)
=== RUN TestKeys
--- PASS: TestKeys (0.01s)
=== RUN TestRecreate
--- PASS: TestRecreate (0.00s)
=== RUN TestWriteErrorWhenReader
--- PASS: TestWriteErrorWhenReader (0.01s)
=== RUN TestReplace
--- PASS: TestReplace (0.01s)
=== RUN TestExists
--- PASS: TestExists (0.01s)
=== RUN TestDelete
--- PASS: TestDelete (0.01s)
=== RUN TestReorganize
--- PASS: TestReorganize (0.01s)
=== RUN TestSync
--- PASS: TestSync (0.01s)
PASS
$ CGO_CFLAGS='-O0 -g' go build -gcflags='all=-N -l'
# _/home/ybochkarev/dev/from-src/go-gdbm
/usr/bin/ld: $WORK/b001/_x002.o: in function `_cgo_d74df84b6f3c_Cfunc_mk_datum':
/tmp/go-build/cgo-gcc-prolog:300: undefined reference to `mk_datum'
collect2: error: ld returned 1 exit status
$ CGO_CFLAGS='-O1 -g' go build -gcflags='all=-N -l' # builds OK
$ CGO_CFLAGS='-O2 -g' go build -gcflags='all=-N -l' # builds OK
What did you expect to see?
I'd expect it to build with CGO_CFLAGS='-O0 -g'
because these are the flags that GoLand uses when running a program in a debugger (compiling first).
What did you see instead?
Link (ld) error.
gcc versions
I tried two versions with the same result:
$ gcc --version
gcc (Ubuntu 9.3.0-10ubuntu2) 9.3.0
$ gcc --version
gcc (Ubuntu 10-20200411-0ubuntu1) 10.0.1 20200411 (experimental) [master revision bb87d5cc77d:75961caccb7:f883c46b4877f637e0fa5025b4d6b5c9040ec566]