Cocotron 支持 Objective-C 垃圾回收吗?
我正在设置 Cocotron 将我的 Mac 应用程序交叉编译为 Windows 的 EXE...为了使用 Cocotron Windows 编译器进行构建,我必须取出编译器参数之一,该参数是启用 Objective-C 垃圾的标志海湾合作委员会的收藏。
我是否必须将手动引用计数内存管理重新添加到我的应用程序中,以使其在 Windows 下运行时不会泄漏内存?或者是否有其他标志可以在 Cocotron 编译器中打开垃圾收集?
I'm setting up Cocotron to cross-compile my Mac app into an EXE for Windows... One of the compiler args I had to take out to get it to build using the Cocotron Windows compiler was the flag that enabled Objective-C garbage collection in GCC.
Will I have to add manual reference counting memory management back into my app in order for it not to leak memory while running under Windows? Or is there some other flag to turn on garbage collection in the Cocotron compiler?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这个答案可能会有所帮助: Windows 的 Objective C
总之,Cocotron 有其由于许可问题,它有自己的运行时,所以它会落后于苹果的。我怀疑只是开发人员还没有实现GC。
This answer may be helpful: Objective C for Windows
In summary, Cocotron has its own runtime due to licensing issues, so it will lag Apple's. I suspect it is only that the developers haven't implemented GC yet.
垃圾收集需要 Mac OS X 运行时和 GC 库。我认为 Cocotron 运行时不支持它。
Garbage collection requires the Mac OS X runtime and GC libraries. I don't think the Cocotron runtime supports it.