79575136

Date: 2025-04-15 12:26:50
Score: 0.5
Natty:
Report link

Expanding on the Marc's answer, Go toolchains after v1.17 uses register-based calling convention(ABI).

With this in mind, you need to compile your binaries using the following command to disable compiler optimizations and inlining to be able to see the the arguments in stack trace:

go build -gcflags=all="-N -l"

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: NeverQuit