-
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/go: provide a way to distribute library without source #12186
Comments
What's tripping you up is the check that the set of source files in the directory matches the ones that were used to compute the .a file. The "mtime hack" is fundamentally at odds with #3895. It's impossible to tell the difference between one person's "mtime hack" and another person's removing source files from the directory and expecting a rebuild. You may be able to keep on with this subterfuge provided you create a set of dummy source files with exactly the same names as the original source files you compiled to produce the .a file, no more, no less, no changed names, and you have to put the real import blocks into the source files, so that the computed set of dependency packages is also the same. Or you could distribute a copy of the go command that disables the p.buildID != targetBuildID check in pkg.go, but I think that will cause more problems than you might like. |
Changed title. Instead of an mtime hack we should, if we're going to support this, establish a clear signal for the go command. |
I can confirm that on a small example, removing the contents of the I haven't yet managed to get it to work on our real code base, but I probably just need to hack our script some more to rub the |
What do you think of doing something like package iRelyOnBinaries
import "foo/bar.a"
func main(){
bar.FooBar() //same behavior as if sources would be available
} Since
|
I guess it all falls down to this: So never mind my little proposal :D |
In your proposal, how would you deal with the fact that during development you have access to the sources of |
Yeah, the idea was instead of allowing to hack the toolchain with creating fake go files plus valid timestamps, this would be more user friendly. So if you got a library foo/bar.a binary just put it in your pkg folder and import it with the extra ".a" in the import path. |
I'm not happy with the hack that requires creating fake Go files, it's just a stopgap measure. But if we're gonna solve this problem, I'd rather not have a solution that involves rewriting imports. |
We didn't get to this for Go 1.6. |
I think it would be better if import is the same between binary and source version. Just put in source the |
A real simple solution would be to simply have a simple .go file for binary export. Some suggestions: binary package foo //binary or pick any other simple mechanism to indicate there are no sources for this package so the compiler should never try to rebuild it. The real world does not/cannot always provide sources. This is not a hard problem, but it is a very important issue to commercial success in a segment of the software business. Those companies will not release source code so they can support/use Go. They will simply not use Go. |
When |
If //binary (maybe //go:nobuild or something) is seen then the .a file is You could also include documentation so godoc would continue to provide Perhaps your source is // Package mine does my stuff // Data contains something. // Result contains a result. // MySecretSauce returns an incredible transformation of x, or an error // internalRoutine is something you don't need to know about You might release a source file of: package main Or perhaps something with documentation: // Package mine does my stuff // go:nobuild // Data contains something. // Result contains a result. // MySecretSauce returns an incredible transformation of x, or an error In any event, the .go file is purely informational and the Go command will This is only one of many possible ways to indicate to the compiler that On Tue, Mar 22, 2016 at 8:38 AM, Benoit Sigoure notifications@github.com
|
Duplicate of #2775 |
What version of Go are you using (go version)?
I have tried go1.5rc1 and building from source:
go version devel +6f0c7df Tue Aug 18 17:00:59 2015 +0000 linux/amd64
What operating system and processor architecture are you using?
Linux 3.4, amd64
What did you do?
Build a distribution of our library as a tarball of the desired contents of GOPATH/src and GOPATH/pkg. Our distribution script implements the "mtime hack" discussed here, packaging dummy source files that only contain the package declaration line and .a files that have an mtime later than the corresponding source files.
Then to test our distribution we try to build an executable that imports the libraries in our distribution.
What did you expect to see?
A built executable.
What did you see instead?
The go tool complains about missing structs and funcs in our dummy go files.
This issue is also referenced in #2775
I also tried to use the shared library feature of go1.5 to distribute our library, but that appears to also require the source code.
The text was updated successfully, but these errors were encountered: