英文:
Golang unsupported platforms
问题
Golang的安装指南位于https://golang.org/doc/install,其中有一个名为“系统要求”的部分。在这个部分中,支持的操作系统之一是“Linux 2.6.23或更高版本与glibc”,但它包含以下注意事项:
> 不支持CentOS/RHEL 5.x
这引发了以下问题:
- 为什么不支持这些Linux发行版?
- 这是否会阻止使用这些系统的用户使用使用Go开发的系统或软件?
- 这是否会阻止使用这些系统的用户使用Go开发软件?
英文:
Golang's installation guide found at https://golang.org/doc/install has a section titled "System requirements." In this section, one of the supported operating systems is "Linux 2.6.23 or later with glibc" but it includes the following note:
> CentOS/RHEL 5.x not supported
This raises the following questions:
- Why are these Linux distributions not supported?
- Does this prevent users of these systems from using systems or software developed in Go?
- Does this prevent users of these systems from developing software using Go?
答案1
得分: 0
这些版本的Linux不提供Go运行时所需的功能。请参考https://dave.cheney.net/2013/06/18/how-to-install-go-1-1-on-centos-5了解详细信息。
英文:
These versions of Linux do not provide facilities used by the Go runtime. See https://dave.cheney.net/2013/06/18/how-to-install-go-1-1-on-centos-5 for details.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论