xcode 4 发行版构建问题
当尝试在另一台计算机上测试在 XCode 4 中创建的应用程序时(从存档发送,就像用户指南所说的那样),我在控制台中收到此错误。有什么想法吗?
2011 年 3 月 27 日 10:20:16 PM com.apple.launchd.peruser.501[106] ([0x0-0x27be7bc].xxx.test[86534]) posix_spawn("/Users/Matt/Dropbox/test.app /Contents/MacOS/test", ...): 权限被拒绝
权限似乎对所有内容都很好,我无法弄清楚。
When trying to test my application created in XCode 4 on another computer (sent from an archive, just like the user guide says to do), I get this error in console. Any ideas?
3/27/11 10:20:16 PM com.apple.launchd.peruser.501[106] ([0x0-0x27be7bc].xxx.test[86534]) posix_spawn("/Users/Matt/Dropbox/test.app/Contents/MacOS/test", ...): Permission denied
The permissions appear to be fine on everything, I can't figure it out.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Dropbox 对捆绑包中的文件权限做了奇怪的事情(Mac / iOS 应用程序是捆绑包)。看来您更改了 Xcode 的默认构建文件夹(现在称为“派生数据”等)以指向此 DropBox 文件夹。不要那样做。
确保该应用程序是在该文件夹之外的某个位置构建的,我敢打赌它会工作。
Dropbox does strange things to file permissions in bundles (Mac / iOS apps are bundles). It seems like you changed Xcode's default build folders (now called "derived data", etc.) to point at this DropBox folder. Don't do that.
Make sure the app is built somewhere aside from this folder and I'll bet it'll work.