go 的可执行程序生成 core dump 文件
Posted adream307
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了go 的可执行程序生成 core dump 文件相关的知识,希望对你有一定的参考价值。
- Open a terminal in the directory with the file .
- Set the ulimit parameter to unlimited:
ulimit -c unlimited
. - Build the program by running
go build
. in the terminal. The build command creates a binary file in the current project folder (for example,awesomeProject
).
4.To create a core dump file, runGOTRACEBACK=crash ./<binary_file_name>
(for example,GOTRACEBACK=crash ./awesomeProject
). This command creates a core file in the current project folder.
参考链接: https://www.jetbrains.com/help/go/exploring-go-core-dumps.html
以上是关于go 的可执行程序生成 core dump 文件的主要内容,如果未能解决你的问题,请参考以下文章