块和 libdispatch 在 Linux 上可用吗?
我很想尝试 Grand Central Dispatch,但我必须在 Ubuntu 工作站上进行开发。 libdispatch 以及 c/obj-c 等的块扩展在 Linux 上可用吗?如果是这样,我如何获得它们?
I would love to try out grand central dispatch, but all I have to develop on is an Ubuntu workstation. Is libdispatch, and the blocks extension to c/obj-c etc... available on linux? If so, how do I get them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
您可能需要使用 LLVM Clang(在 Ubuntu 上可用) 编译器此时获取块(我不认为这在 gcc 中可用,但我还没有跟上 gcc,所以我可能是错的。)
正在努力移植 libdispatch(开源 libdispatch 的主页) 到 Linux。到目前为止,大部分工作似乎都在 Debian 上,但也有一些在其他发行版上。请参阅这些讨论主题:
You may need to use the LLVM Clang (available on Ubuntu) compiler to get blocks at this time (I don't think this is available in gcc yet, but I haven't been keeping up with gcc, so I could be wrong.)
There are efforts underway to port libdispatch (home for the open source libdispatch) to Linux. Most of the effort seems to be on Debian so far, but some on other distributions, too. See these discussion threads:
我已经做了一些工作,让 OS X Mountain Lion 版本的 libdispatch 在 Linux 上运行;结果在 Github 上:http://nickhutchinson.me/libdispatch/。
I've done some work to get the OS X Mountain Lion version of libdispatch working on Linux; the result is up at Github: http://nickhutchinson.me/libdispatch/.
使用 clang-3.4。
Use clang-3.4.
使用 C++ lambda,而不是使用块。他们使用 C++ 玩得更好,并且隐藏的魔法更少。
我这样做:
如果您需要确保在调用发生之前存在某些共享资源(例如通过共享指针保持活动状态的对象上的回调):
像这样调用它们
或...
Rather than use blocks, use c++ lambdas. They play better with c++ and there is less hidden magic.
I do it like this:
And if you need to ensure that some shared resource exists before the call takes place (such as a callback on an object that is kept alive by a shared pointer):
call them like this
or...