-
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
proposal: cmd/go: vendor: only copy files that the Go build system recognizes #67233
Comments
given #26366, isn't it just a bug that cmd/go copies more than necessary now? |
Maybe? I wrote this as a proposal because it's clearly a user-visible change. But if we want to just call the current behavior a bug, that is fine with me. CC @matloob |
This comment was marked as off-topic.
This comment was marked as off-topic.
I think there are some subtleties here that make it more than just a bug. For instance, in the linked issue, #26366 (comment) there's a user who wants to make sure that the LICENSE files are copied in the vendor directory. |
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
This comment was marked as off-topic.
@ianlancetaylor Ah, got it. |
@bjorndm Are you saying that that does not work today? That seems like a separate issue from this one. |
@ianlancetaylor The file I linked above is an example of the hack that is necessary to get go mod vendor to keep C and H files in subdirectories. I'm here to make sure that this hack keeps on working at least. But you are right, not needing this hack is a separate issue. |
This seems reasonable to me. |
Proposal Details
Currently
go mod vendor
copies all files in a package except:_test.go
go.mod
andgo.sum
.go
and contain ago:build ignore
constraintThis means that other random files are copied into the vendored directory. For example, the vendored golang.org/x/sys/unix in the main repo includes
mkall.sh
,mkerrors.sh
, andREADME.md
. There is no reason to vendor those files.I propose that we change
go mod vendor
to only copy files thatgo build
recognizes. This is files that end with.go
,.c
,.cxx
,.swig
, and so forth. Making this change would also requirego mod vendor
to look forgo:embed
directives and copy over all files that they mention (for example, the vendored files inGOROOT/src/cmd/vendor/github.com/google/pprof/internal/driver/html
).The text was updated successfully, but these errors were encountered: