Integrating Erlang with C++

c++, erlang

Solution

Native implemented functions: available in the latest Erlang/OTP version, allows you to implement any of your functions in C.

Port drivers: you can link a C code to the Erlang VM, and access it using port_command.

C Nodes: With the ei library you can mimic a VM and talk to your Erlang VMs using the Erlang distribution format.

Problem

What interfaces exist to tie Erlang with C++?

Original source