Golang : Setting variable value with ldflags
This short tutorial will demonstrate how to initialize a variable value during runtime at the stage of compilation/linking. Go linker has an option to set the value of an uninitialised string variable:
-X symbol value
Set the value of an otherwise uninitialized string variable.
The symbol name should be of the form importpath.name,
as displayed in the symbol table printed by "go tool nm".
For example :
package main
import "fmt"
var str string
func main() {
fmt.Println(str)
}
and execute the program with -ldflags
to initialize the str variable value
$ go run -ldflags "-X main.str abc" main.go
or if you prefer, build it first into executable binary :
$ go build -ldflags "-X main.str 'abc'" main.go && ./main
Output :
abc
Reference :
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
+10.8k Golang : Create Temporary File
+28.4k Get file path of temporary file in Go
+9k Golang : Simple histogram example
+12k Golang : Decompress zlib file example
+11.3k Android Studio : Create custom icons for your application example
+12.7k Golang : Convert int(year) to time.Time type
+14.3k Golang : How to filter a map's elements for faster lookup
+8.6k Golang : Combine slices but preserve order example
+5.5k Golang : Shortening import identifier
+20.9k Golang : Sort and reverse sort a slice of strings
+6.3k CodeIgniter : form input set_value cause " to become & quot
+7.1k Golang : Check if one string(rune) is permutation of another string(rune)