You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
xk6 builder has hardcoded the options for removing debug info:
"-ldflags", "-w -s", // trim debug symbols
This prevent using debugging tools. For example, dlv throws the following error message:
could not launch process: decoding dwarf section info at offset 0x0: too short - debuggee must not be built with 'go run' or -ldflags='-s -w', which strip debug info
It would be convenient to add a flag or environment variable for changing this behavior.
The text was updated successfully, but these errors were encountered:
xk6 builder has hardcoded the options for removing debug info:
"-ldflags", "-w -s", // trim debug symbols
This prevent using debugging tools. For example, dlv throws the following error message:
It would be convenient to add a flag or environment variable for changing this behavior.
The text was updated successfully, but these errors were encountered: