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=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1687454439; bh=+/aNz4y+AbrUpY8/J4QV4+dsn+DjkqAo9OG0y4IXBZg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=YripPpPCn2et5Ls8aO59zAzUGY3GNlUgfimz8udbjwCD+bP9BKvW7LSjfuGyXpiSw 1czeUWM5O79iYygjEJ4Hg/qAw4g99tsohoPaynvTODErOK6FqzY92qXUNGq7XjBOEP dcU36S1cpctrpKY6ILFmO0DyWHW+4VM6awvPb+KXkiqOhBw/Q3l+9fiv85WT19efyY 0zfm5lgJe5HFnO/0LgR537lEEs6ZGYT8t1qgaE+9h9cIPxHibVpKwxLh7mxqJO0AAf SmVGH/Py0J/WBtKTzdg1i/B9xXLpTrFtMvKT3PCBArm7/9+33K29rKmvWuYT4Zsz3T 6WG9226yCfK0w== Received: from integral2.. (unknown [68.183.184.174]) by gnuweeb.org (Postfix) with ESMTPSA id DA9DC249D78; Fri, 23 Jun 2023 00:20:36 +0700 (WIB) From: Ammar Faizi To: Jens Axboe Cc: Alviro Iskandar Setiawan , Guillem Jover , Jeff Moyer , Stefan Hajnoczi , Michael William Jonathan , Matthew Patrick , io-uring Mailing List , Linux Kernel Mailing List , GNU/Weeb Mailing List Subject: [RFC PATCH liburing v1 1/3] configure: Remove --nolibc option Date: Fri, 23 Jun 2023 00:20:27 +0700 Message-Id: <20230622172029.726710-2-ammarfaizi2@gnuweeb.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230622172029.726710-1-ammarfaizi2@gnuweeb.org> References: <20230622172029.726710-1-ammarfaizi2@gnuweeb.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This option was deprecated and planned to be removed. Now remove it. Co-authored-by: Alviro Iskandar Setiawan Signed-off-by: Alviro Iskandar Setiawan Signed-off-by: Ammar Faizi --- configure | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/configure b/configure index 28f3eb0aee24f9ea..a16ffca83d678364 100755 --- a/configure +++ b/configure @@ -5,22 +5,6 @@ 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 @@ -42,8 +26,6 @@ for opt do ;; --cxx=*) cxx="$optarg" ;; - --nolibc) nolibc_deprecated - ;; *) echo "ERROR: unknown option $opt" echo "Try '$0 --help' for more information" @@ -91,7 +73,6 @@ Options: [defaults in brackets after descriptions] --datadir=PATH install shared data in PATH [$datadir] --cc=CMD use CMD as the C compiler --cxx=CMD use CMD as the C++ compiler - --nolibc build liburing without libc EOF exit 0 fi -- Ammar Faizi