From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [182.253.183.184]) by gnuweeb.org (Postfix) with ESMTPSA id 6CDA48188B; Mon, 16 Jan 2023 14:28:43 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1673879325; bh=0R7FRm9ecJbddmJR9NjQzQH//2BtgJnlBHZ0qOROLYA=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PGP+d/DR429hq+wH6Per84T5x34AOU0Loh1Roh5vEK8m+KLzw14Htq9wNyWO5xoNX goAXe8ICIKJ+hxLnEKMg4ikMsRxuuB5cjPZt8Yl551SJf1YMwNWZnhivzF6Ejh++8H qMFA9IYYwHgyjODRGD3YqLadXI5G33GGDSBJS0sGFqIhZFvLv/PiALJGaLgBnUzIAY 9Hc58ZyjRGUr0BpjqGsE9fIzZ08NRhQvTuY3TUezWt+Tzw1rbBi0DOlm489SjlxC42 B5mqeO5X6z+DQssayl6H3lurPl5BGE/a//cd+betO/uw2jZeEkv1f499EF7p0UaYfj aWNFr8qZrUOug== From: Ammar Faizi To: Jens Axboe Cc: Ammar Faizi , Pavel Begunkov , Christian Mazakas , Gilang Fachrezy , io-uring Mailing List , VNLX Kernel Department , GNU/Weeb Mailing List Subject: [RFC PATCH liburing v2 1/2] README: Explain how to build liburing Date: Mon, 16 Jan 2023 21:28:21 +0700 Message-Id: <20230116142822.717320-2-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230116142822.717320-1-ammar.faizi@intel.com> References: <20230116142822.717320-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Ammar Faizi Tell people how to build liburing. Signed-off-by: Ammar Faizi --- README | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README b/README index 80d2b3dc5d5eaf76..4dd59f67fcbfbc5e 100644 --- a/README +++ b/README @@ -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 ------- -- Ammar Faizi