-
Notifications
You must be signed in to change notification settings - Fork 17.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cmd/link: can't build shared time/tzdata #44073
Comments
without the import, there's no dependency so not sure if there's anything that can be done? |
Yeah, as @seankhliao said, when multiple packages have inter-dependencies, it is not possible to build individual ones as shared libraries. This is also true for the runtime. You'd need to build them together. |
I think you do not consider I compiled libtime.so before time-tzdata.so So time-tzdata.so cannot load from shared library libtime.so |
I don't see a problem? main » rm -rf x
main » go install -v -ldflags '-s -w' -trimpath -buildmode=shared -linkshared -tags timetzdata -pkgdir x time
main » ls x
runtime libtime.so runtime.a time.a time.shlibname
main » go install -v -ldflags '-s -w' -trimpath -buildmode=shared -linkshared -tags timetzdata -pkgdir x time/tzdata
main » ls x
runtime time errors.a libtime-tzdata.so libtime.so runtime.a sync.a syscall.a time.a time.shlibname |
If you want to recreate the problem do the following, To make every dependency shared library in appropriate hierarchy: p.listruntime sync test.bash#! /bin/bash What is expected:/usr/src/lib/libbufio.so What we get instead:/tmp/go-build3257893882/b017/libtime-tzdata.so/usr/src/go/pkg/tool/linux_amd64/link: running gcc failed: exit status 1 How to get around thisBuilding time and time/tzdata into one shared library go install -v -ldflags '-s -w' -gcflags '-trimpath /usr/src/go' -buildmode=shared -linkshared -pkgdir /usr/src/lib time time/tzdata Reason for doing thisActually I understand it may be against Go language's idioms, as the point is to create static executables, or as my colleagues asked why not just a standard library as shared library libstd.so, which is of course the default approach Yes you are all right, I am testing the new Linker in 1.16, as our code contains a ton of shared objects due to Licenses of those libraries, I recreate the issues we faced with our developed libraries with standard libraries, when I see a problem in shared objects in our properietary code |
I have the same problem with these: internal/execabs |
Probably related issue, which appears when cross-compiling a Go program for
The program is built without issues for |
…ata into the app The approach with `timetzdata` build tag didn't work for GOARCH=arm and GOARCH=ppc64le due to the issue golang/go#44073 (comment)
…ata into the app The approach with `timetzdata` build tag didn't work for GOARCH=arm and GOARCH=ppc64le due to the issue golang/go#44073 (comment)
Change https://golang.org/cl/292490 mentions this issue: |
@valyala thanks for reporting. This is a different problem. The CL above should fix it. |
Currently, in the trampoline generation pass we expect packages are laid out in dependency order, so a cross-package jump always has a known target address so we can check if a trampoline is needed. With linknames, there can be cycles in the package dependency graph, making this algorithm no longer work. For them, as the target address is unkown we conservatively generate a trampoline. This may generate unnecessary trampolines (if the packages turn out laid together), but package cycles are extremely rare so this is fine. Updates #44073. Change-Id: I2dc2998edacbda27d726fc79452313a21d07787a Reviewed-on: https://go-review.googlesource.com/c/go/+/292490 Trust: Cherry Zhang <cherryyz@google.com> Reviewed-by: Than McIntosh <thanm@google.com>
Obsoleted by #47788 |
What version of Go are you using (
go version
)?Does this issue reproduce with the latest release?
Yes
What operating system and processor architecture are you using (
go env
)?Tested on both CentOS 7 and RHEL8
go env
OutputWhat did you do?
go install -v -ldflags '-s -w' -gcflags '-trimpath /usr/src/go' -buildmode=shared -linkshared -pkgdir /usr/src/lib time/tzdata
What did you expect to see?
The following shared library being created
/usr/src/lib/libtime-tzdata.so
What did you see instead?
How to solve the issue without shared linking?
go install -v -ldflags '-s -w' -gcflags '-trimpath /usr/src/go' -buildmode=shared -linkshared -pkgdir /usr/src/lib time time/tzdata
However
It creates:
/usr/src/lib/libtime,time-tzdata.so
It is not possible to create time-tzdata as separate shared library, this seems to be the new linker problem.
The text was updated successfully, but these errors were encountered: