Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:124755 X-Original-To: internals@lists.php.net Delivered-To: internals@lists.php.net Received: from php-smtp4.php.net (php-smtp4.php.net [45.112.84.5]) by qa.php.net (Postfix) with ESMTPS id E02E31A00B7 for ; Mon, 5 Aug 2024 10:49:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722855065; bh=R3WFjEporgxUoXjMTW41mZKvXsW254IDdGd8vsfrTAM=; h=Date:From:To:cc:Subject:In-Reply-To:References:From; b=NDOtDZuUaja8ce2euDq3sKvlgreTNPPnAAnRwmj+xgg7S2ejhGx0GvzRZ3z+LK9LG vQNT43rmuv3p90NZARipkbF0Jgk00lEpN9Yi7XlzgGp8d9nvBedZkxqlDi5ktgpDFe l2/As1m3DDOdgMoJNrwUiORssBLa94gzBNegqcW614z0rk4zuzishe9fQUnIWWYZFg urZ36n0P9AcyGOs39BQS8Mqe3MfNoekwBNGHPadhI8Lth20vrlvGVI0dO3CDdus+OU LQ4YR3EuC6AbmWi0jW4+a8zoJ4pP7zXPGZGWL3SaiZW8vgc0aC6EbOvuLhqrmqtnTc XZmiUFc/NZcpQ== Received: from php-smtp4.php.net (localhost [127.0.0.1]) by php-smtp4.php.net (Postfix) with ESMTP id B413418006D for ; Mon, 5 Aug 2024 10:51:04 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 4.0.0 (2022-12-13) on php-smtp4.php.net X-Spam-Level: *** X-Spam-Status: No, score=3.6 required=5.0 tests=BAYES_50,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,DMARC_PASS,SPF_HELO_PASS, SPF_SOFTFAIL autolearn=no autolearn_force=no version=4.0.0 X-Spam-Virus: No X-Envelope-From: Received: from xdebug.org (xdebug.org [82.113.146.227]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by php-smtp4.php.net (Postfix) with ESMTPS for ; Mon, 5 Aug 2024 10:51:04 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=php.net; s=mail; t=1722854962; bh=R3WFjEporgxUoXjMTW41mZKvXsW254IDdGd8vsfrTAM=; h=Date:From:To:cc:Subject:In-Reply-To:References:From; b=LTHc85GM0hauBF2nX4peoNUFK8KZnHnVrBAAttRc+qKMz3j6OniLP3kYDFHJddQNl na0MJzyjoIUJE8Id6JX5t2mh6QquUu+XojggLWWGFDEwu3cd9g0djPtshgCwKyGbXM 4hxa80DLP0Xsx5u5iftQCc7Uds3S/ADF5s5uskA4kkrr5Ziz19pYZkortaVpdteTAI +I07ZHiiyLN6aDYhnzC0ks4qJA/kDQwLdxH3L9hDM7K0R9ErAye+NoRDWROteL6mrV k34X3L7UPTcjwPAonrBxLjW1Mx4zf6cqHCghzEFIvVPkcZQ3WR+yjWle715mIs/Mxl V7nKMIHJ7z63A== Received: from localhost (localhost [IPv6:::1]) by xdebug.org (Postfix) with ESMTPS id 33AD310C033; Mon, 05 Aug 2024 11:49:22 +0100 (BST) Date: Mon, 5 Aug 2024 11:49:22 +0100 (BST) To: Ilija Tovilo cc: PHP internals Subject: Re: [PHP-DEV] Require C11 in PHP 8.4 In-Reply-To: Message-ID: References: Precedence: bulk list-help: list-post: List-Id: internals.lists.php.net x-ms-reactions: disallow MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII From: derick@php.net (Derick Rethans) On Thu, 1 Aug 2024, Ilija Tovilo wrote: > Hence, it seems like it would be ok to bump our C compiler requirement > to C11. We'd like to make this change before beta 1 if there are no > objections. How would you enforce that, through configure? FWIW, I have just tried compiling Xdebug with -std=c2x (C23) and that caused me one trivial required change: https://github.com/xdebug/xdebug/pull/969/files cheers, Derick