savi-lang / savi

A fast language for programmers who are passionate about their craft.
BSD 3-Clause "New" or "Revised" License
154 stars 12 forks source link

Add `:ffi_link_c_files` declarator, compiling C files alongside Savi files. #406

Closed jemc closed 1 year ago

jemc commented 1 year ago

This allows Savi libraries or programs to distribute C files alongside the Savi source code files and compile them together, linking the functions from the C files so that they can be called via FFI.

This makes it easy to write arbitrary C shims or other unsafe shenanigans outside of Savi, and leverage them from Savi, without requiring the end-user of the library to use a separate build mechanism to compile the C code.