Re: Example: Binding C++ to Haskell using the ffi
David Sankel <[email protected]>
| Newsgroups | gmane.comp.lang.haskell.gui,gmane.comp.lang.haskell.ffi |
|---|---|
| Message-ID | <[email protected]> |
--- Seth Kurtzberg <[email protected]> wrote: > The C++ compilers are all supposed to use the same > name mangling scheme, which > is part of the standard. Just to clarify on this a little bit; there is no ABI specification in standard C++. However, there is an industry standard emerging that g++ >=3.2 attempts (and succeds?) to adhere too. Here is the link: http://www.codesourcery.com/cxx-abi/ Some gcc information on this: http://gcc.gnu.org/gcc-3.2/c++-abi.html David J. Sankel