问题描述
hsc2hs和c2hs有什么区别?
我知道hsc2hs是一个预处理器,但它究竟干什么?
c2hs可以从C代码创建Haskell模块,但是我需要hsc2hs吗?
它们都具有相同的功能:可以更容易地编写FFI绑定。如果您选择使用c2hs,则不需要了解hsc2hs;他们是独立的。 C2hs更强大,但也更复杂:Edward Z. Yang在他的有许多
Haskell预处理器;你应该使用哪一个
?表达
以上层次结构的简短(并且有些是
不准确)的方式是您进一步下跌
,您的
编写的样板文件越少,文档$ b $越多b你必须阅读;因此,我听到了
的建议,即hsc2hs是您应该使用
的小型FFI项目,而c2hs
更适用于较大的
。
c2hs支持hsc2hs
的事物不会: b
$ b
头文件的内容
What is the difference between hsc2hs and c2hs?
I know what hsc2hs is a preprocessor but what does it exactly do?
And c2hs can make Haskell modules from C-code, but do I need hsc2hs for this?
They both have the same function: make it easier to write FFI bindings. You don't need to know about hsc2hs if you chose to use c2hs; they are independent. C2hs is more powerful, but also more complicated: Edward Z. Yang illustrates this point with a nice diagram in his c2hs tutorial:
这篇关于hsc2hs和c2hs之间的区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!