英文:
gofmt extremely slow to complete
问题
我正在使用 iMac 27'' 2013 年底款型号,并且我想对我的软件包运行 gofmt
工具。
我这样调用它:
iMacs-Image:sergiotapia ~/smitego $ gofmt
然后它就一直卡在那里,永远不会完成。有什么建议吗?
英文:
I'm on an iMac 27'' late 2013 model and I want to run the gofmt
tool against my package.
I'm calling it like so:
iMacs-Image:sergiotapia ~/smitego $ gofmt
And it's frozen there forever, never completing. Any suggestions?
答案1
得分: 14
你的调用方式不正确。gofmt
期望从标准输入接收源文件,并将格式化后的代码输出到标准输出。在要格式化的包所在的目录中使用 go fmt
(中间有一个空格)来格式化包内的代码。
英文:
You're calling it incorrectly. gofmt
expects a source file on its standard input and outputs formatted code on standard output. Use go fmt
(with a space) inside the directory of the package you want to format to format the code inside a package.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论