英文:
Develop Go application that access to Windows
问题
我正在下载MinGW来在Windows上编译Go,但是,开发访问Windows系统调用的Go应用程序是否需要任何SDK呢?
英文:
I am downloading MinGW to compile Go in Windows but, is it necessary any SDK to develop Go applications that access to Windows' system calls?
答案1
得分: 4
不需要除了标准库和Windows编译器之外的任何东西来在Windows上运行Go代码,包括系统调用。
请查看Go标准库中的syscall
包。
英文:
No. You don't need anything else than the standard library and windows compiler to run Go code on Windows. Including syscalls.
Check out the syscall
package in Go's standard library.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论