background picture of the home page

Think in Code

Mac修改依赖动态库路径

Mac修改依赖动态库路径 查看动态库依赖路径 otool -L <*.dylib> 修改动态库路径 install_name_tool -change /usr/local/lib/libswresample.3.dylib @rpath/libswresample.3.dylib ../doul

thumbnail of the cover of the post

Qt Wasm 配置过程

Qt Wasm 配置过程 cd ~ mkdir wasm && cd wasm git clone https://github.com/emscripten-core/emsdk.git cd emsdk ./emsdk install sdk-fastcomp-1.38.30-64bit ./e

thumbnail of the cover of the post

Docker配置libreoffice镜像

参考书籍: 《Docker - 从入门到实践(v1.2.0)》 - 书栈网 · BookStack 安装docker curl -fsSL get.docker.com -o get-docker.sh sudo sh get-docker.sh --mirror Aliyun 配置docker用

thumbnail of the cover of the post

dlv 远程调试

dlv 远程调试 本地编辑Goland编译配置 远程机器安装 dlv go get github.com/go-delve/delve/cmd/dlv $GOPATH/bin 目录下会有dlv可执行程序 进入代码目录,通过dlv监听端口 dlv debug --headless --listen=:

thumbnail of the cover of the post