You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After doing this I can build successfully with step 2 of the provided build instructions... but with some glibc warnings that could be a problem for portability:
$ GOOS=linux go build -tags release -a -ldflags
# github.com/ochinchina/supervisord
/usr/local/bin/ld: /tmp/go-link-1145361369/000021.o: infunction`mygetgrouplist':
/_/os/user/getgrouplist_unix.go:15: warning: Using 'getgrouplist'in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/local/bin/ld: /tmp/go-link-1145361369/000020.o: infunction`mygetgrgid_r':
/_/os/user/cgo_lookup_cgo.go:45: warning: Using 'getgrgid_r'in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/local/bin/ld: /tmp/go-link-1145361369/000020.o: infunction`mygetgrnam_r':
/_/os/user/cgo_lookup_cgo.go:54: warning: Using 'getgrnam_r'in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/local/bin/ld: /tmp/go-link-1145361369/000020.o: infunction`mygetpwnam_r':
/_/os/user/cgo_lookup_cgo.go:36: warning: Using 'getpwnam_r'in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/local/bin/ld: /tmp/go-link-1145361369/000020.o: infunction`mygetpwuid_r':
/_/os/user/cgo_lookup_cgo.go:27: warning: Using 'getpwuid_r'in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
/usr/local/bin/ld: /tmp/go-link-1145361369/000004.o: infunction`_cgo_cbcce81e6342_C2func_getaddrinfo':
/tmp/go-build/cgo-gcc-prolog:58: warning: Using 'getaddrinfo'in statically linked applications requires at runtime the shared libraries from the glibc version used for linking
Is this all expected behaviour?
The text was updated successfully, but these errors were encountered:
I am downloading the v0.7.3 source directly from here:
https://github.com/ochinchina/supervisord/archive/refs/tags/v0.7.3.zip
After unpacking that, I follow the install directions in the main README.md (here) and run
go generate
:It looks like the dependencies aren't set up properly.
I then successfully grab the missing dependency tree, as suggested:
After doing this I can build successfully with step 2 of the provided build instructions... but with some glibc warnings that could be a problem for portability:
Is this all expected behaviour?
The text was updated successfully, but these errors were encountered: