@@ -47,6 +47,30 @@ the kernel io_uring support. Please note that this suite isn't expected to
pass on older kernels, and may even crash or hang older kernels!
+Building liburing
+-----------------
+
+ #
+ # Prepare build config (optional).
+ #
+ # --cc specifies the C compiler.
+ # --cxx speficies the C++ compiler.
+ #
+ ./configure --cc=gcc --cxx=g++;
+
+ #
+ # Build liburing.
+ #
+ make -j$(nproc);
+
+ #
+ # Install liburing (headers, shared/static libs, and manpage).
+ #
+ sudo make install;
+
+See './configure --help' for more information about build config options.
+
+
License
-------