Golang : Add build version and other information in executables
Problem:
You want to add version and other information such as compilation time into your executables(binaries) and display the information during run time. How to do that?
Solution:
Displaying version and compilation time information during run time can be useful for testing and debugging purpose. For example, you are a developer producing different versions of executable for the testing team to test and having this sort of information can assist the test team in providing accurate feedback.
Below is a simple example of how to include version and compilation time information during compilation time.
package main
import (
"fmt"
"time"
)
var (
version string
timeStamp string
)
func main() {
timeStamp := time.Now()
fmt.Println("Running version : ", version)
fmt.Println("Build time: ", timeStamp)
}
and build this file with -ldflags
flag
For example:
go build -ldflags "-X main.version=v1.1" buildinfo.go
when executing the binary, you will see this during run time:
$ ./buildinfo
Running version : v1.1
Build time: 2017-02-15 14:35:35.598182767 +0800 SGT
Hope this helps!
Happy coding!
NOTES:
If you encounter this error message during compilation time:
-X flag requires argument of the form importpath.name=value
simply change "-X main.version v0.1"
to "-X main.version=v0.1"
References:
https://www.socketloop.com/tutorials/golang-setting-variable-value-with-ldflags
See also : Golang : Setting variable value with ldflags
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+23.2k Golang : minus time with Time.Add() or Time.AddDate() functions to calculate past date
+14.2k Golang : How to determine if user agent is a mobile device example
+7.2k Golang : Hue, Saturation and Value(HSV) with OpenCV example
+12.7k Python : Convert IPv6 address to decimal and back to IPv6
+3.1k Golang : Fix go-cron set time not working issue
+8.7k Golang : Populate or initialize struct with values example
+7.1k Golang : Word limiter example
+7.5k Golang : Trim everything onward after a word
+8.9k Golang : Gonum standard normal random numbers example
+19k Golang : Get RGBA values of each image pixel
+12.3k Golang : Send data to /dev/null a.k.a blackhole with ioutil.Discard