From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) by sourceware.org (Postfix) with ESMTP id 3FB3D3858435 for ; Sat, 5 Feb 2022 07:34:54 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 3FB3D3858435 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gentoo.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gentoo.org Received: by smtp.gentoo.org (Postfix, from userid 559) id A886B342DA9; Sat, 5 Feb 2022 07:34:53 +0000 (UTC) From: Mike Frysinger To: newlib@sourceware.org Subject: [PATCH 5/7] newlib: drop cygnus EXEEXT hack Date: Sat, 5 Feb 2022 02:34:34 -0500 Message-Id: <20220205073436.6577-6-vapier@gentoo.org> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20220205073436.6577-1-vapier@gentoo.org> References: <20220205073436.6577-1-vapier@gentoo.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Status: No, score=-11.6 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_PASS, SPF_PASS, TXREP, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: newlib@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Newlib mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Feb 2022 07:34:55 -0000 Now that we rely on AC_NO_EXECUTABLES to disable link tests, we don't need this hack to disable exeext probing. --- newlib/acinclude.m4 | 12 ------------ newlib/configure | 16 ++-------------- newlib/libc/configure | 16 ++-------------- newlib/libc/sys/linux/configure | 16 ++-------------- newlib/libc/sys/linux/linuxthreads/configure | 16 ++-------------- .../sys/linux/linuxthreads/machine/configure | 16 ++-------------- .../linux/linuxthreads/machine/i386/configure | 16 ++-------------- newlib/libc/sys/linux/machine/configure | 16 ++-------------- newlib/libc/sys/linux/machine/i386/configure | 16 ++-------------- newlib/libc/sys/phoenix/configure | 12 ------------ newlib/libc/sys/phoenix/machine/arm/configure | 12 ------------ newlib/libc/sys/phoenix/machine/configure | 12 ------------ newlib/libm/configure | 16 ++-------------- 13 files changed, 18 insertions(+), 174 deletions(-) diff --git a/newlib/acinclude.m4 b/newlib/acinclude.m4 index 8c5122b5fc2f..7795e580b715 100644 --- a/newlib/acinclude.m4 +++ b/newlib/acinclude.m4 @@ -138,18 +138,6 @@ ac_given_INSTALL=$INSTALL AM_MAINTAINER_MODE -# We need AC_EXEEXT to keep automake happy in cygnus mode. However, -# at least currently, we never actually build a program, so we never -# need to use $(EXEEXT). Moreover, the test for EXEEXT normally -# fails, because we are probably configuring with a cross compiler -# which can't create executables. So we include AC_EXEEXT to keep -# automake happy, but we don't execute it, since we don't care about -# the result. -if false; then - AC_EXEEXT - dummy_var=1 -fi - . [$]{newlib_basedir}/configure.host NEWLIB_CFLAGS=${newlib_cflags} -- 2.34.1