This is the public repository of the CleanQ Linux implementation
See the LICENSE file.
- Roni Haecki
- Reto Achermann
- Daniel Schwyn
See the CONTRIBUTING file.
make and gcc
To build CleanQ including the tests and examples, type
make
this will create the build directory containing the compiled libraries and
executables:
build/libcontains libcleanq.build/includethis directory contains the public include filesbinthe examplea and test directories.
If you like to build your own CleanQ workload you want to add the following flags to your compiler:
Using the dynamic Library
INC=-I./build/include
LIB=-L../../build/lib -lcleanq -lrt
Using the static Library
INC=-I./build/include
LIB=./build/lib/libcleanq.a -lrt