unkaktus / fuka-exporter

Shared library for FUKA ID exporting functions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fuka_exporter

This is a library that wraps useful FUKA C++ functions and builds as a shared objects, so it they can be called from other languages, such as C, Python, Go.

Installation

Install Task first (https://taskfile.dev):

mamba install go-task

Build FUKA, so that it produces a static C++ library called libkadath.a in $HOME_KADATH/lib.

Export variable that points to the FUKA build:

export HOME_KADATH=$HOME/fuka

Run the build of fuka-exporter:

task build

This will produce libfuka_exporter.so, which you can either place into your libraries location or append LD_LIBRARY_PATH with its current location:

export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD

After that, your code that is linked against fuka_exporter can run.

About

Shared library for FUKA ID exporting functions

License:GNU General Public License v3.0


Languages

Language:C++ 73.9%Language:Go 18.9%Language:C 7.2%