如何在 Windows 上构建 Go-SDL?
有人成功做到这一点吗?
Has anyone been successful doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
有人成功做到这一点吗?
Has anyone been successful doing this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
如果满足以下条件,只需在根目录中调用 make 即可工作:
1) 你已经设置了 GOROOT 环境变量
2)你可以访问安装go的目录,而
我却没有。通过使用 gomake 而不是 make 可以轻松解决第一点。问题是我还没有将go目录的bin目录添加到root用户的PATH中,所以我必须启动一个root termianl,将go bin目录导出到PATH中,然后在Go-SDL目录中调用gomake 。
虽然我的情况似乎很特殊,但也许它能有所帮助。
It should work by just calling make in the root directory if:
1) You have the GOROOT env variable set
2) You have access to the directory in which go is installed
I had neither. Point one can easily be solved by using gomake instead of make. The problem is that i haven't added the bin directory of the go directory to the root users PATH, so i had to start up a root termianl, export the go bin directory to the PATH and then call gomake in the Go-SDL directory.
My case seems to be pretty special though, but maybe it can help.