This website requires JavaScript.
Explore
Help
Sign in
KurlesHS
/
rclone
Watch
1
Star
0
Fork
You've already forked rclone
0
forked from
TrueCloudLab/rclone
Code
Pull requests
Activity
d149d1ec3e
rclone
/
lib
/
buildinfo
/
cgo.go
8 lines
79 B
Go
Raw
Normal View
History
Unescape
Escape
build: apply gofmt from golang 1.17
2021-09-09 12:25:25 +00:00
//go:build cgo
version: show build tags and type of executable This patch modifies the output of `rclone version`. The `os/arch` line is split into `os/type` and `os/arch`. The `go version` line is now tagged as `go/version` for consistency. Additionally the `go/linking` line tells whether the rclone was linked as a static or dynamic executable. The new `go/tags` line shows a space separated list of build tags. The info about linking and build tags is also added to the output of the `core/version` RC endpoint.
2021-03-21 12:13:09 +00:00
package
buildinfo
func
init
(
)
{
Tags
=
append
(
Tags
,
"cgo"
)
}
Copy permalink