Dies ist eine alte Version des Dokuments!
Downloads
This is the user documentation for the flink userspace library in C. It provides a device and bus independent interface to the underlying driver modules. For more information about the inner workings see flink Userspace Library on Github. The API of the library can be found under API
When flink is used on a Linux based system the flink userspace library offers an simple interface to communicate with the underlying kernel modules. The userspace library is split in two parts.
The library must be built for the target platform architecture.
git clone https://github.com/flink-project/flinklib.git
mkdir build-local
cmake ..
Optional: you can specify an installation prefix path with
cmake DCMAKE_INSTALL_PREFIX:PATH=/usr/local/ ..
make
git clone https://github.com/flink-project/flinklib.git
mkdir build-powerpc
cmake -DCMAKE_TOOLCHAIN_FILE:PATH=/path/to/your/toolchain/file.cmake -DCMAKE_INSTALL_PREFIX:PATH=/usr/powerpc-linux-gnu/ ..
make
make install