chainhelen

Results 13 comments of chainhelen

``` 1. nginx listen 80 2. run ./gor --input-raw :80 --output-http-track-response --input-raw-track-response --output-file=finallogs10.gor 3. curl 0:80/w 4. cat finallogs10_0.gor 1 ec2c570cef93119934305fb8f3201a7564878dd7 1534245813016174000 GET /w HTTP/1.1 Host: 0 User-Agent: curl/7.47.0 Accept:...

@GhostZCH Maybe you provide more infomation about this issue? Cmd 、env、package? Or reproduce this in `master` branch code Thx

Maybe what you want is `runtime.Breakpoint`. ``` package main import ( "fmt" "runtime" ) func main() { runtime.Breakpoint() fmt.Printf("hello world") } ``` `dlv debug main.go` then `c`

@hmtai Maybe like this ? https://github.com/go-delve/delve/issues/1323

It do rely on `runtime.GOOS, runtime.GOARCH` instead of executable at present.

Delve need to be compiled on i386 platform or cross compile for i386 (please note dlv use cgo when cross compile) .

Oh, is the new branch named `introduce-debug-target` related to this issue?

It means debugger could not find this method, so can't use `call`. You can type `funcs util*` to see all methods of package `util`.