From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x631.google.com (mail-ej1-x631.google.com [IPv6:2a00:1450:4864:20::631]) by sourceware.org (Postfix) with ESMTPS id 452D2385514B for ; Fri, 25 Nov 2022 11:29:30 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 452D2385514B Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=gmail.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=gmail.com Received: by mail-ej1-x631.google.com with SMTP id vv4so9711342ejc.2 for ; Fri, 25 Nov 2022 03:29:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:from:to:cc:subject:date:message-id:reply-to; bh=Yt6A7wnBMKqIlHHkQ2ozUmW22j62j2zgBJ9olFVUK3s=; b=X5h5kOwd/EX7cLsQyK4K0ABaJ+Wwn8wOrg7uc91ZhDjwtlP7hwDcT+c8LPmoc6i1Pf WWFTEoNdIfs4pZxIVXQ3VFAVwXhD5YilSw7hNxw7qJWd94wEj7REg7HYIhNVLgrQXpe7 CFyTGYNkJAsqtXyWfDttPmmOeKrtx1R8MyDfEugcxwb/kAy+85y2bv0gETw+DRjh+XHL x3tbmTz5oqQuaEipjeX2KFpO1a2NLeZKfAL9qkAgF3+inLkY1gJ6x/wyiQ0mymr8itxg ttp8MvkoRZ+T+dc+VjMONU/dtgm3f26/wmDiJpJfI7uChuYC9J+qXXWbdrp/LmdOXz/r al0g== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=cc:to:subject:message-id:date:from:in-reply-to:references :mime-version:x-gm-message-state:from:to:cc:subject:date:message-id :reply-to; bh=Yt6A7wnBMKqIlHHkQ2ozUmW22j62j2zgBJ9olFVUK3s=; b=nCZlHw6VraUYEm4j+ZZTrOVyqAXyPnJKQ2YQpc/RZXTP9Iygly46aOK3UoiVON/08X p2q5edIEaCEk7UOnfqCPOFOZOuoNpAfYZhT1T7jej289AQ2EdBavflT+5QXztuGNyuRe e1kBq6GVbo7jNUUkyftcvWIjhK/R3DpB6gmVTBcFngTAXYDKM27FuJRRyq37pKKCBpAf zoMfRncyW9NFBTzBgovz1TXZVGEWATj8HPwC22eN7R76farw5yA+fX7BBcS5q9SLT/P1 pNY6oHzcKdbY63+1CilHNcUO4sgqjgRIQSf9JL8GlLH4VEO8KRvVldWJ/oZ+nK//I46N S/hQ== X-Gm-Message-State: ANoB5pnD805eRxXRcW1OIxGj8S37F+6tdFmCMLU/+WoDysTR/PCxnkmz cNWgucBpUZeVN+XXfvvgsGrigDilGDaGVDF7Oig= X-Google-Smtp-Source: AA0mqf6DbqK4DRHX7lH51fsGIFQxUV/KOTkm72OjhRQcoyLPE0SrJmqH0UditnZkwJ24Au4WAtbOTtrPeG1Px/f8rwc= X-Received: by 2002:a17:906:edce:b0:7ad:dd43:5d18 with SMTP id sb14-20020a170906edce00b007addd435d18mr15084446ejb.389.1669375768906; Fri, 25 Nov 2022 03:29:28 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Jonathan Wakely Date: Fri, 25 Nov 2022 11:29:17 +0000 Message-ID: Subject: Re: Configuring GCC 10.3 on PPC Mac OS X 10.4.11/Tiger for build reveals flaws in configure scripts To: Peter Dyballa Cc: gcc-help@gcc.gnu.org Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-0.7 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,SPF_HELO_NONE,SPF_PASS,TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org List-Id: On Fri, 25 Nov 2022 at 11:22, Jonathan Wakely wrote: > > On Fri, 25 Nov 2022 at 10:20, Peter Dyballa via Gcc-help > wrote: > > Configuring stage 2 in ./gcc > > > > checking linker --sysroot support... no > > checking __stack_chk_fail in target C library... checking for __stack_chk_fail... no > > no __stack_chk_fail on this target > > no > > checking sys/sdt.h in the target C library... no > > > I'll see if I can find this one too. Also harmless though. gcc/configure.ac has: # Test for stack protector support in target C library. AC_CACHE_CHECK(__stack_chk_fail in target C library, ... *-*-darwin* | *-*-freebsd* | *-*-netbsd*) AC_CHECK_FUNC(__stack_chk_fail,[gcc_cv_libc_provides_ssp=yes], [echo "no __stack_chk_fail on this target"]) ;; That AC_CHECK_FUNC comes after the earlier message which hasn't printed its result yet, so the output of the two gets muddled. Then the echo makes it even worse, by adding a third message inside the other two.