First, you have to clone the repo:
git clone https://github.com/axboe/liburing.git
Then you can build:
make -C ./liburing
After that, you can compile your program.c
with liburing:
标签:git,liburing,18.04,program,build,Ubuntu From: https://www.cnblogs.com/62mins/p/17082205.htmlgcc program.c -o ./program -I./liburing/src/include/ -L./liburing/src/ -Wall -O2 -D_GNU_SOURCE -luring
内容来自:c++ - how to build liburing - Stack Overflow