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 C7B9E7E41C; Fri, 6 Jan 2023 15:52:19 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1673020342; bh=P9xWc8JRTwJuvDZNiI0hkbuuk8tWAvyw91Blr0so0Ak=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fXetpVTr4HM7ejH/C4xU0Ceh4dhGCIvORP5qWXSxfo10ihD6hrnjlTp9ycso3mTfV /V4mLEwjVahPJ/Cp8GxmptRFTq5DM2MqsShxAw8Bx0WQNSuzWKgGZAAyLaorbUpl8p czvty4VeAFzaA7FZDCXVLFD5g0Qvc8ZueFlddwj87rPnnhg6azHCPCW2JXZnfftBV1 5glIzHETGRK905WfBkWvSKpGbn5LNLf22JQ8yzEO9Zp58DSybBqIGyrLK2I3KB0Xnv oVJ0tWAukaPV58x7F2J38pw+SHNCdz7uQi0A9nSNlOWZ+0RNB9Invw9WGvk5OmDykZ 32BDxejID3P3A== From: Ammar Faizi To: Jens Axboe Cc: Alviro Iskandar Setiawan , Pavel Begunkov , Gilang Fachrezy , VNLX Kernel Department , GNU/Weeb Mailing List , io-uring Mailing List , Ammar Faizi Subject: [RFC PATCH liburing v1 2/2] configure: Always enable `CONFIG_NOLIBC` if the arch is supported Date: Fri, 6 Jan 2023 22:52:02 +0700 Message-Id: <20230106155202.558533-3-ammar.faizi@intel.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230106155202.558533-1-ammar.faizi@intel.com> References: <20230106155202.558533-1-ammar.faizi@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: From: Alviro Iskandar Setiawan Currently, the default liburing compilation uses libc as its dependency. liburing doesn't depend on libc when it's compiled on x86-64, x86 (32-bit), and aarch64. There is no benefit to having libc.so linked to liburing.so on those architectures. Always enable CONFIG_NOLBIC if the arch is supported. If the architecture is not supported, fallback to libc. Signed-off-by: Alviro Iskandar Setiawan Co-authored-by: Ammar Faizi Signed-off-by: Ammar Faizi --- configure | 40 +++++++++++++++++++++++++++++++++++----- 1 file changed, 35 insertions(+), 5 deletions(-) diff --git a/configure b/configure index 4d9e99c..2033e6f 100755 --- a/configure +++ b/configure @@ -5,6 +5,22 @@ set -e cc=${CC:-gcc} cxx=${CXX:-g++} +# +# TODO(ammarfaizi2): Remove this notice and `--nolibc` option. +# +nolibc_deprecated() { + echo ""; + echo "================================================================="; + echo ""; + echo " --nolibc option is deprecated and has no effect."; + echo " It will be removed in a future liburing release."; + echo ""; + echo " liburing on x86-64, x86 (32-bit) and aarch64 always use CONFIG_NOLIBC."; + echo ""; + echo "================================================================="; + echo ""; +} + for opt do optarg=$(expr "x$opt" : 'x[^=]*=\(.*\)' || true) case "$opt" in @@ -26,7 +42,7 @@ for opt do ;; --cxx=*) cxx="$optarg" ;; - --nolibc) liburing_nolibc="yes" + --nolibc) nolibc_deprecated ;; *) echo "ERROR: unknown option $opt" @@ -385,13 +401,27 @@ fi print_config "NVMe uring command support" "$nvme_uring_cmd" ############################################################################# +# +# Currently, CONFIG_NOLIBC is only enabled on x86-64, x86 (32-bit) and aarch64. +# +cat > $TMPC << EOF +int main(void){ +#if defined(__x86_64__) || defined(__i386__) || defined(__aarch64__) + return 0; +#else +#error libc is needed +#endif +} +EOF +if compile_prog "" "" "nolibc support"; then + liburing_nolibc="yes" +fi +print_config "nolibc support" "$liburing_nolibc"; +############################################################################# + if test "$liburing_nolibc" = "yes"; then output_sym "CONFIG_NOLIBC" -else - liburing_nolibc="no" fi -print_config "liburing_nolibc" "$liburing_nolibc" - if test "$__kernel_rwf_t" = "yes"; then output_sym "CONFIG_HAVE_KERNEL_RWF_T" fi -- Ammar Faizi