英文:
MacOS - GoClipse GAE - "open build: No such file or directory"
问题
我最近重新安装了MacOS Lion,并且在GoClipse中无法让我的Google App Engine Go应用程序再次工作。我通过App Store下载了XCode,GAE Go SDK和Eclipse。我解压了Eclipse和SDK,通过Eclipse菜单安装了GoClipse,并将6g、6l和pack文件从GAE/goroot/pkg/tool/darwin_amd64移动到GAE/goroot/bin。我在Eclipse首选项中设置了适当的目录,清理了工作区中的所有项目,但是出现了大量错误。
每个包都出现了“open build: No such file or directory”的错误。除了这些错误之外,没有其他错误,这些错误一遍又一遍地重复出现。我尝试创建一个新项目。当我添加一个空的.go文件,并声明它属于哪个包时,同样的错误出现了。
我应该如何修复“open build”错误?
英文:
I've recently did a clean install of the MacOS Lion and I am having problems getting my Google App Engine Go applications to work in GoClipse again. I've downloaded XCode through App Store, the GAE Go SDK and Eclipse. I unzipped the Eclipse and SDK, installed GoClipse through Eclipse menu and moved 6g, 6l and pack files from GAE/goroot/pkg/tool/darwin_amd64 to GAE/goroot/bin. I've set up the appropriate directories in the Eclipse Preferences for Go, cleaned all the projects I have in my workspace and I got a ton of errors.
It appears that every single package got an error of "open build: No such file or directory". There are no other errors, just these ones, repeated over and over. I tried making a new project. When I added a blank .go file that stated just what package it is a part of, the same error appeared.
How should I go about fixing the "open build" errors?
答案1
得分: 1
最近尝试使用GoClipse后,我模糊地记得你看到的错误是安装失败的残留物。我看到的提示说尝试删除它(字面上,在窗口中选择它并按下删除/退格键);它不会像大多数其他工具一样自动消失。
这个问题的错误已在此处提交:http://code.google.com/p/goclipse/issues/detail?id=104
英文:
Having tried using GoClipse recently, I have a vague memory that the error you're seeing is a leftover from a failed install. The note I saw said to try and delete it (literally, select it in the window and hit delete/backspace key); it doesn't automatically disappear like with most other tools.
A bug for this is filed here : http://code.google.com/p/goclipse/issues/detail?id=104
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论