Luca Corbatto

Results 30 comments of Luca Corbatto

I have the same issue. My setup looks like this: ``` $GOPATH ├── ... ├── src │   ├── myproject -> ~/Development/myproject │   │   └── ... ``` I do this because...

## Did a little further investigation and here is what I found - Settings breakpoints only fails if they are in a different file from the one being executed. So...

Ok, so I closed the upstream issue because they convinced me that it's not a bug (at least not in delve) because it only uses files it can find in...

I just forked and experimented a bit. And it seems like _just_ making the paths relative is not enough to make it work. See [here](https://github.com/targodan/go-debug/commit/c2ccbab22655af1656b8465ee4a092743f0193b1) for how I've done it....

Also seeing this with [fkie-cad/yapscan](https://github.com/fkie-cad/yapscan) on windows only. That being said, I do do a bunch of c-stuff and reading remote process memory. ``` go version go1.16.4 windows/amd64 ```

Is the MEM_LARGE_PAGES flag used? In that case the size needs to be a multiple of `GetLargePageMinimum`. > 3. Include the MEM_LARGE_PAGES value when calling the VirtualAlloc function. The size...

It also seems like the allocation is done with a fixed address? Even if that is not the core of the issue in this case (since it seems to *always*...

Thank you for testing. Good point. I'll double check that there is no system-lib related problem. I hadn't used the `LD_LIBRARY_PATH`, I just set the cmake prefix to `/usr`. Might...

All right, I'm back. I've cleaned up my system by uninstalling the package and manually installing the built version with the fix. Here's what I did: (I just use mfoc...