分类 tools 中的文章

查看exe依赖的DLL

Windows下使用dumpbin

dumpbin.exe通常在下面的路径下:

C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.16.27023\bin\Hostx64\x64

将该路径加入到PATH环境变量中即可

$ dumpbin …

阅读全文

Ubuntu18.04软件安装和美化

安装方法:

0、update source

sudo  vim /etc/apt/sources.list
   
=================163 source==========================

deb http://mirrors.163.com/ubuntu/ bionic main restricted …

阅读全文

golang交叉编译

golang交叉编译【禁止CGO】

# 如果你想在Windows 32位系统下运行
➜  ~CGO_ENABLED=0 GOOS=windows GOARCH=386 go build test.go

# 如果你想在Windows 64位系统下运行
➜  ~CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build …

阅读全文