mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
0c76a8384f
GHC in the ports tree has been updated to 7.0.3 and all other Haskell ports are also updated to their corresponding Haskell Platform versions, or latest versions. We would like to acknowledge the support of the FreeBSD Donations Team and Eotvos Lorand University, Faculty of Informatics who contributed to the server that we used for testing. We would also like to thank all the testers who tested FreeBSD Haskell ports and provided their feedback. PR: ports/156642 Approved by: tabthorpe (mentor) Obtained from: FreeBSD Haskell
11 lines
630 B
Plaintext
11 lines
630 B
Plaintext
C->Haskell is an interface generator that simplifies the development of Haskell
|
|
bindings to C libraries. The tool processes existing C header files that
|
|
determine data layout and function signatures on the C side in conjunction with
|
|
Haskell modules that specify Haskell-side type signatures and marshaling
|
|
details. Hooks embedded in the Haskell code signal access to C structures and
|
|
functions -- they are expanded by the interfacing tool in dependence on
|
|
information from the corresponding C header file. Another noteworthy property
|
|
is the lightweight nature of the approach.
|
|
|
|
WWW: http://www.cse.unsw.edu.au/~chak/haskell/c2hs/
|