Zhuo Zhang

Results 112 comments of Zhuo Zhang

gdb 里面跑到 segfault 时,可以用 `bt` 命令查看 call stack, 使用 `up` / `down` 等命令切换 frame, 在不同的 frame 下可以用 `p` 命令等打印变量,做进一步检查。

I have updated to 16.11.17 and also not working. Can't find vld.h header file.

@rocksat Is there `cudnn` installed on your machine? It saves video memory.

See this reference : https://github.com/zhangliliang/RPN_BF/issues/11 The author gives 3 suggestions: a. Modify the Makefile.config to disable the cudnn before compling this repo. b. Use older cudnn version like v4 or...

I meet same error with windows-latest. I change `-G "Visual Studio 16 2019" -A x64` to `-G "Visual Studio 17 2022" -A x64` to solve it.

@light1003 No, their colors are different.

The full produce project is uploaded in https://github.com/zchrissirhcz/min-repros/tree/master/test_codelldb_remote_arm64_read_register , including the scripts to compile, and the json files for vscode debugging. BTW, my settings.json of VSCode is: ``` // CodeLLDB...

I've tested again, with codelldb using my build lldb, and it can read registers correctly: ``` "lldb.library": "/home/zz/soft/llvm15-dev/lib/liblldb.so", "lldb.adapterEnv": { "LLDB_DEBUGSERVER_PATH": "/home/zz/soft/llvm15-dev/bin/lldb-server" }, ``` ![图片](https://user-images.githubusercontent.com/3831847/170900254-bbd2e7cc-1f04-4d33-ae77-03cb86bbe198.png) There are actually many updates...

> Did this get resolved in v1.8.1? I've tested again, removing the customization of lldb path, update to latest codelldb(v1.8.2), and it successfully read registers `x0`, `x1` and `x2`. I...

@vadimcn Could this issue caused by incompatible lldb shared library ? I just met similar issue on Linux x64, debugging x64 native C++ code, and command line lldb nearly never...