For example, to disable compiler optimizations and inlining, you can use the following the gcflags. $ go build -gcflags="-N -I"
It should be `-l` and not `-I`, such that it reads:
$ go build -gcflags="-N -l"
It should be `-l` and not `-I`, such that it reads: