X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Andreas Enge <andreas@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Wed, 23 Sep 2020 16:23:01 +0000 Resent-Message-ID: <handler.43579.B.16008781365688 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: report 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 43579 <at> debbugs.gnu.org X-Debbugs-Original-To: bug-guix@HIDDEN Received: via spool by submit <at> debbugs.gnu.org id=B.16008781365688 (code B ref -1); Wed, 23 Sep 2020 16:23:01 +0000 Received: (at submit) by debbugs.gnu.org; 23 Sep 2020 16:22:16 +0000 Received: from localhost ([127.0.0.1]:37606 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kL7X5-0001Tg-PO for submit <at> debbugs.gnu.org; Wed, 23 Sep 2020 12:22:16 -0400 Received: from lists.gnu.org ([209.51.188.17]:41444) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <andreas@HIDDEN>) id 1kL7X5-0001TZ-5C for submit <at> debbugs.gnu.org; Wed, 23 Sep 2020 12:22:15 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:51192) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <andreas@HIDDEN>) id 1kL7X4-0008IU-Ui for bug-guix@HIDDEN; Wed, 23 Sep 2020 12:22:14 -0400 Received: from hera.aquilenet.fr ([2a0c:e300::1]:39492) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from <andreas@HIDDEN>) id 1kL7X2-00007h-Qz for bug-guix@HIDDEN; Wed, 23 Sep 2020 12:22:14 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id E3B9CBEB; Wed, 23 Sep 2020 18:22:02 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 1oBUr8liMXwz; Wed, 23 Sep 2020 18:22:01 +0200 (CEST) Received: from jurong (unknown [IPv6:2001:910:103f::f06]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 21E6E5BE; Wed, 23 Sep 2020 18:22:01 +0200 (CEST) Date: Wed, 23 Sep 2020 18:21:21 +0200 From: Andreas Enge <andreas@HIDDEN> Message-ID: <20200923162121.GA28654@jurong> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Received-SPF: neutral client-ip=2a0c:e300::1; envelope-from=andreas@HIDDEN; helo=hera.aquilenet.fr X-detected-operating-system: by eggs.gnu.org: No matching host in p0f cache. That's all we know. X-Spam_score_int: -10 X-Spam_score: -1.1 X-Spam_bar: - X-Spam_report: (-1.1 / 5.0 requ) BAYES_00=-1.9, SPF_HELO_PASS=-0.001, SPF_NEUTRAL=0.779 autolearn=no autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.6 (-) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -2.6 (--) Hello, this report is related to https://github.com/fplll/fplll/issues/444 The following test file round.cpp does not compile with our g++-10.2.0: #include <cfenv> int main () { return std::fegetround (); } Compilation (also when adding "--std=c++11") prints the error: round.cpp: In function 'int main()': round.cpp:4:16: error: 'fegetround' is not a member of 'std'; did you mean 'fegetround'? 4 | return std::fegetround (); | ^~~~~~~~~~ In file included from /home/andreas/.guix-profile/include/c++/fenv.h:36, from /home/andreas/.guix-profile/include/c++/cfenv:41, from round.cpp:1: /home/andreas/.guix-profile/include/fenv.h:104:12: note: 'fegetround' declared here 104 | extern int fegetround (void) __THROW __attribute_pure__; | ^~~~~~~~~~ Compilation succeeds when replacing std::fegetround by fegetround; however, the former is supposedly part of the C++11 standard. The culprit is apparently cfenv, which contains the following: #if _GLIBCXX_HAVE_FENV_H #include_next <fenv.h> #endif #if _GLIBCXX_USE_C99_FENV_TR1 ... #undef fegetround ... namespace std { ... using ::fegetround; ... } Our include/c++/x86_64-unknown-linux-gnu/bits/c++config.h has this: #define _GLIBCXX_HAVE_FENV_H 1 /* Define if C99 functions in <fenv.h> should be imported in <tr1/cfenv> in namespace std::tr1. */ /* #undef _GLIBCXX_USE_C99_FENV_TR1 */ whereas apparently on other distributions (opensuse, for instance), _GLIBCXX_USE_C99_FENV_TR1 is defined and leads to std::fesetround being defined. And when I look at the build log https://ci.guix.gnu.org/log/xpdy9vvqym9xv7praqkwsm3gdzn2kv1p-gcc-10.2.0 for instance, there are the following lines: checking for ISO C99 support to TR1 in <fenv.h>... no checking for ISO C99 support to TR1 in <stdint.h>... yes checking for ISO C99 support to TR1 in <math.h>... yes checking for ISO C99 support to TR1 in <inttypes.h>... yes whereas in opensuse, there is checking for ISO C99 support to TR1 in <fenv.h>... yes Now it would be interesting to have a look at config.log for gcc... Andreas
Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) Content-Type: text/plain; charset=utf-8 X-Loop: help-debbugs@HIDDEN From: help-debbugs@HIDDEN (GNU bug Tracking System) To: Andreas Enge <andreas@HIDDEN> Subject: bug#43579: Acknowledgement (g++ does not provide std::fegetround) Message-ID: <handler.43579.B.16008781365688.ack <at> debbugs.gnu.org> References: <20200923162121.GA28654@jurong> X-Gnu-PR-Message: ack 43579 X-Gnu-PR-Package: guix Reply-To: 43579 <at> debbugs.gnu.org Date: Wed, 23 Sep 2020 16:23:02 +0000 Thank you for filing a new bug report with debbugs.gnu.org. This is an automatically generated reply to let you know your message has been received. Your message is being forwarded to the package maintainers and other interested parties for their attention; they will reply in due course. Your message has been sent to the package maintainer(s): bug-guix@HIDDEN If you wish to submit further information on this problem, please send it to 43579 <at> debbugs.gnu.org. Please do not send mail to help-debbugs@HIDDEN unless you wish to report a problem with the Bug-tracking system. --=20 43579: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D43579 GNU Bug Tracking System Contact help-debbugs@HIDDEN with problems
X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Andreas Enge <andreas@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Wed, 23 Sep 2020 16:38:02 +0000 Resent-Message-ID: <handler.43579.B43579.16008790377837 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: 43579 <at> debbugs.gnu.org Received: via spool by 43579-submit <at> debbugs.gnu.org id=B43579.16008790377837 (code B ref 43579); Wed, 23 Sep 2020 16:38:02 +0000 Received: (at 43579) by debbugs.gnu.org; 23 Sep 2020 16:37:17 +0000 Received: from localhost ([127.0.0.1]:37644 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kL7ld-00022L-Ho for submit <at> debbugs.gnu.org; Wed, 23 Sep 2020 12:37:17 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:37220) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <andreas@HIDDEN>) id 1kL7lb-000227-Da for 43579 <at> debbugs.gnu.org; Wed, 23 Sep 2020 12:37:16 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 0634AC10; Wed, 23 Sep 2020 18:37:12 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ksPPU3cMY3q6; Wed, 23 Sep 2020 18:37:12 +0200 (CEST) Received: from jurong (unknown [IPv6:2001:910:103f::f06]) by hera.aquilenet.fr (Postfix) with ESMTPSA id EC4B05BE; Wed, 23 Sep 2020 18:37:11 +0200 (CEST) Date: Wed, 23 Sep 2020 18:36:32 +0200 From: Andreas Enge <andreas@HIDDEN> Message-ID: <20200923163632.GA7348@jurong> References: <20200923162121.GA28654@jurong> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200923162121.GA28654@jurong> X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.3 (/) On Wed, Sep 23, 2020 at 06:21:21PM +0200, Andreas Enge wrote: > Now it would be interesting to have a look at config.log for gcc... I did so with gcc-10.2.0 and executed ./configure in the subdirectory libstdc++-v3. The relevant part of config.log is this: configure:16462: checking for ISO C99 support to TR1 in <fenv.h> configure:16490: g++ -c -std=c++98 conftest.cpp >&5 configure:16490: $? = 0 configure:16497: result: yes This is when trying to compile gcc-10.2.0 with gcc-10.2.0; so somehow our bootstrapping process does something differently when creating the final user facing gcc. Andreas
X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Ricardo Wurmus <rekado@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Wed, 23 Sep 2020 19:03:02 +0000 Resent-Message-ID: <handler.43579.B43579.160088775627306 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Andreas Enge <andreas@HIDDEN> Cc: 43579 <at> debbugs.gnu.org Received: via spool by 43579-submit <at> debbugs.gnu.org id=B43579.160088775627306 (code B ref 43579); Wed, 23 Sep 2020 19:03:02 +0000 Received: (at 43579) by debbugs.gnu.org; 23 Sep 2020 19:02:36 +0000 Received: from localhost ([127.0.0.1]:37875 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kLA2G-00076M-4M for submit <at> debbugs.gnu.org; Wed, 23 Sep 2020 15:02:36 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21146) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <rekado@HIDDEN>) id 1kLA2D-00076A-F3 for 43579 <at> debbugs.gnu.org; Wed, 23 Sep 2020 15:02:34 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1600887751; cv=none; d=zohomail.com; s=zohoarc; b=WJ3Y+EBBs6tbIuemVFh/3RYN6KTxFu5uK5T8jDsDmjUGB0xmNm+YWuaQCHLIbQFZpEcP7C83dOMVZ/8p+oDBxF7O1Dy1qyA7Fugn1/yv2JpUTuhrwAbT8KbPo8ffQhYCC/Jx20X9KzAqQTa+zx9wW7dbgaFfR7slUTAwlaLWgOs= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1600887751; h=Content-Type:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=Ul7OZVi0TzuOsVWlZnQpNUhHz1DUcWMmgRseI2AX+ag=; b=bSktCt33aauNnz2wQ8d3yWJn85aM1o95gS8UuFnG1m/Aab4m+uQyTyRhPJukdxSZCds5RTRdEPDuX2eYyOy+RL5BKrdqrRkX7N3XlOkrh92N0YYM8ulZUt3b0CPw34ZVnra7EUWCXuwXI0GRm+xNkNg3/R8uVg55xxeMCk2TSzA= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@HIDDEN; dmarc=pass header.from=<rekado@HIDDEN> header.from=<rekado@HIDDEN> DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1600887751; s=zoho; d=elephly.net; i=rekado@HIDDEN; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type; bh=Ul7OZVi0TzuOsVWlZnQpNUhHz1DUcWMmgRseI2AX+ag=; b=fbTOOWrtstmayQmuya/mQI4Kd+PSRcF3LAqpXktFWCRw4bcuubFmSy9WdYUOjSJ3 c7/Wcgh/he2YBtQVJmlGLTAI1gsSDg3r3oJ7PhCbujAT4bNWG2tNuMJTd7W17ecbRL4 4wzJs/DFtjK1Vtxo6Jmh/5gvEAcZvD7bFPkbkoFo= Received: from localhost (p54ad4dd8.dip0.t-ipconnect.de [84.173.77.216]) by mx.zohomail.com with SMTPS id 1600887749413183.9667348270102; Wed, 23 Sep 2020 12:02:29 -0700 (PDT) References: <20200923162121.GA28654@jurong> User-agent: mu4e 1.4.13; emacs 27.1 From: Ricardo Wurmus <rekado@HIDDEN> In-reply-to: <20200923162121.GA28654@jurong> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Wed, 23 Sep 2020 21:03:54 +0200 Message-ID: <875z84gvs5.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Andreas Enge <andreas@HIDDEN> writes: > Hello, > > this report is related to > https://github.com/fplll/fplll/issues/444 > > The following test file round.cpp does not compile with our g++-10.2.0: > #include <cfenv> > int main () { > return std::fegetround (); > } > > > Compilation (also when adding "--std=c++11") prints the error: > round.cpp: In function 'int main()': > round.cpp:4:16: error: 'fegetround' is not a member of 'std'; did you mean 'fegetround'? > 4 | return std::fegetround (); > | ^~~~~~~~~~ > In file included from /home/andreas/.guix-profile/include/c++/fenv.h:36, > from /home/andreas/.guix-profile/include/c++/cfenv:41, > from round.cpp:1: > /home/andreas/.guix-profile/include/fenv.h:104:12: note: 'fegetround' declared here > 104 | extern int fegetround (void) __THROW __attribute_pure__; > | ^~~~~~~~~~ Is this perhaps related to https://issues.guix.gnu.org/42392 ? -- Ricardo
X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Andreas Enge <andreas@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Wed, 23 Sep 2020 20:07:01 +0000 Resent-Message-ID: <handler.43579.B43579.16008915903236 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Ricardo Wurmus <rekado@HIDDEN> Cc: 43579 <at> debbugs.gnu.org Received: via spool by 43579-submit <at> debbugs.gnu.org id=B43579.16008915903236 (code B ref 43579); Wed, 23 Sep 2020 20:07:01 +0000 Received: (at 43579) by debbugs.gnu.org; 23 Sep 2020 20:06:30 +0000 Received: from localhost ([127.0.0.1]:37979 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kLB25-0000q8-Ux for submit <at> debbugs.gnu.org; Wed, 23 Sep 2020 16:06:30 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:38442) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <andreas@HIDDEN>) id 1kLB22-0000pw-1K for 43579 <at> debbugs.gnu.org; Wed, 23 Sep 2020 16:06:28 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id 71D905C9; Wed, 23 Sep 2020 22:06:24 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id zGOcV-ZdfWRj; Wed, 23 Sep 2020 22:06:23 +0200 (CEST) Received: from jurong (unknown [IPv6:2001:910:103f::b98]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 36186597; Wed, 23 Sep 2020 22:06:23 +0200 (CEST) Date: Wed, 23 Sep 2020 22:05:43 +0200 From: Andreas Enge <andreas@HIDDEN> Message-ID: <20200923200543.GA9839@jurong> References: <20200923162121.GA28654@jurong> <875z84gvs5.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <875z84gvs5.fsf@HIDDEN> X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.3 (/) On Wed, Sep 23, 2020 at 09:03:54PM +0200, Ricardo Wurmus wrote: > Is this perhaps related to https://issues.guix.gnu.org/42392 ? It looks very similar indeed. But then the fix given there has not fixed my problem, which occurs in a current gcc-toolchain. Andreas
X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Andreas Enge <andreas@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Wed, 23 Sep 2020 20:22:02 +0000 Resent-Message-ID: <handler.43579.B43579.16008924795170 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Ricardo Wurmus <rekado@HIDDEN> Cc: 43579 <at> debbugs.gnu.org Received: via spool by 43579-submit <at> debbugs.gnu.org id=B43579.16008924795170 (code B ref 43579); Wed, 23 Sep 2020 20:22:02 +0000 Received: (at 43579) by debbugs.gnu.org; 23 Sep 2020 20:21:19 +0000 Received: from localhost ([127.0.0.1]:38002 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kLBGR-0001LK-5B for submit <at> debbugs.gnu.org; Wed, 23 Sep 2020 16:21:19 -0400 Received: from hera.aquilenet.fr ([185.233.100.1]:38530) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <andreas@HIDDEN>) id 1kLBGP-0001LA-Tr for 43579 <at> debbugs.gnu.org; Wed, 23 Sep 2020 16:21:18 -0400 Received: from localhost (localhost [127.0.0.1]) by hera.aquilenet.fr (Postfix) with ESMTP id D06AEC35; Wed, 23 Sep 2020 22:21:15 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at aquilenet.fr Received: from hera.aquilenet.fr ([127.0.0.1]) by localhost (hera.aquilenet.fr [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id QWJY0_qccTaK; Wed, 23 Sep 2020 22:21:15 +0200 (CEST) Received: from jurong (unknown [IPv6:2001:910:103f::b98]) by hera.aquilenet.fr (Postfix) with ESMTPSA id 8D2D85C9; Wed, 23 Sep 2020 22:21:06 +0200 (CEST) Date: Wed, 23 Sep 2020 22:20:11 +0200 From: Andreas Enge <andreas@HIDDEN> Message-ID: <20200923202011.GA17102@jurong> References: <20200923162121.GA28654@jurong> <875z84gvs5.fsf@HIDDEN> <20200923200543.GA9839@jurong> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200923200543.GA9839@jurong> X-Spam-Score: 0.7 (/) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -0.3 (/) On Wed, Sep 23, 2020 at 10:05:43PM +0200, Andreas Enge wrote: > It looks very similar indeed. But then the fix given there has not fixed > my problem, which occurs in a current gcc-toolchain. My impression is that the root cause is the same one, that we are somehow misconfiguring our gcc builds, as discussed in this thread: https://lists.gnu.org/archive/html/guix-devel/2020-06/msg00096.html And that the hacky fix works for the other problems, but apparently not for this one. Andreas
X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Ricardo Wurmus <rekado@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Wed, 23 Sep 2020 21:28:01 +0000 Resent-Message-ID: <handler.43579.B43579.160089644013725 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Andreas Enge <andreas@HIDDEN> Cc: 43579 <at> debbugs.gnu.org Received: via spool by 43579-submit <at> debbugs.gnu.org id=B43579.160089644013725 (code B ref 43579); Wed, 23 Sep 2020 21:28:01 +0000 Received: (at 43579) by debbugs.gnu.org; 23 Sep 2020 21:27:20 +0000 Received: from localhost ([127.0.0.1]:38048 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kLCIJ-0003ZI-Gc for submit <at> debbugs.gnu.org; Wed, 23 Sep 2020 17:27:19 -0400 Received: from sender4-of-o51.zoho.com ([136.143.188.51]:21167) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <rekado@HIDDEN>) id 1kLCIG-0003Z6-UJ for 43579 <at> debbugs.gnu.org; Wed, 23 Sep 2020 17:27:18 -0400 ARC-Seal: i=1; a=rsa-sha256; t=1600896435; cv=none; d=zohomail.com; s=zohoarc; b=ZeBjreJI1NR26nzQl2IPh+JEqn8YlriVlVOQJktNPZBM79VRHh5oV4cyDfXv4vBwaGIt2NfYon1C0VsmSNBtGFsIDnHRLY8dg3w5SAc3e3/D3eMYtg53/M9frKx9hEbC2gEPGP466zg4bBha/hLKnbxbvVH0TzLfKYTESw8fTwQ= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc; t=1600896435; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To; bh=CVf9Ikx29sCnIN0lnd4K95S0+uqqKGgWdRxXp+BkJnU=; b=EjCTjEkU4WbXYD1Td/FzaEWlGXQaQ0F35/LZ0VWJUU86ZNuRpH4yjYLR8RDtm8lIswEds6JLGJUwxB8tF2MoJW09U7zQrrnajaPGB5O82IYK5JxuU2kVXw1Ss+SCtkmqNkYC03T+cwD6W+AD/BhmDcJb2cSXXSZr8/32Audft4Q= ARC-Authentication-Results: i=1; mx.zohomail.com; dkim=pass header.i=elephly.net; spf=pass smtp.mailfrom=rekado@HIDDEN; dmarc=pass header.from=<rekado@HIDDEN> header.from=<rekado@HIDDEN> DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1600896435; s=zoho; d=elephly.net; i=rekado@HIDDEN; h=References:From:To:Cc:Subject:In-reply-to:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding; bh=CVf9Ikx29sCnIN0lnd4K95S0+uqqKGgWdRxXp+BkJnU=; b=crS7nTv/tUZdWlTLL9aVDbkZS0cdvR38HZ65wtMBVgaX9NVfZeAue9gWiJ5+ju5k tiHBCo2Ga6R7OCy71TUuttB85xQt2/JbUID8m2gA5xRRwe292mBnHFjWVuLCXcFYybo MX1p29O4ZIuyhX24fCr63avQLw6uuSvblY8v1DA8= Received: from localhost (p4fd5ac63.dip0.t-ipconnect.de [79.213.172.99]) by mx.zohomail.com with SMTPS id 1600896431710620.1697574545213; Wed, 23 Sep 2020 14:27:11 -0700 (PDT) References: <20200923162121.GA28654@jurong> <875z84gvs5.fsf@HIDDEN> <20200923200543.GA9839@jurong> <20200923202011.GA17102@jurong> User-agent: mu4e 1.4.13; emacs 27.1 From: Ricardo Wurmus <rekado@HIDDEN> In-reply-to: <20200923202011.GA17102@jurong> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Wed, 23 Sep 2020 23:28:36 +0200 Message-ID: <873638gp2z.fsf@HIDDEN> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-ZohoMailClient: External X-Spam-Score: -0.0 (/) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) Andreas Enge <andreas@HIDDEN> writes: > On Wed, Sep 23, 2020 at 10:05:43PM +0200, Andreas Enge wrote: >> It looks very similar indeed. But then the fix given there has not fixed >> my problem, which occurs in a current gcc-toolchain. > > My impression is that the root cause is the same one, that we are somehow > misconfiguring our gcc builds, as discussed in this thread: > https://lists.gnu.org/archive/html/guix-devel/2020-06/msg00096.html > > And that the hacky fix works for the other problems, but apparently not > for this one. I=E2=80=99m having a different but possibly related problem with arm-none-eabi-nano-toolchain-7-2018-q2-update, which used to work some time ago (in axoloti-patcher-next). For that issue the hack also did not work. --=20 Ricardo
Received: (at control) by debbugs.gnu.org; 24 Sep 2020 04:47:33 +0000 From debbugs-submit-bounces <at> debbugs.gnu.org Thu Sep 24 00:47:33 2020 Received: from localhost ([127.0.0.1]:38443 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kLJAK-0008Bj-St for submit <at> debbugs.gnu.org; Thu, 24 Sep 2020 00:47:33 -0400 Received: from mail-qt1-f182.google.com ([209.85.160.182]:45061) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <maxim.cournoyer@HIDDEN>) id 1kLJAI-0008BV-SG for control <at> debbugs.gnu.org; Thu, 24 Sep 2020 00:47:31 -0400 Received: by mail-qt1-f182.google.com with SMTP id z2so1965628qtv.12 for <control <at> debbugs.gnu.org>; Wed, 23 Sep 2020 21:47:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=date:message-id:to:from:subject; bh=kTZ400t6S59g+62nYPXAifyNjY1Apt/+yvTGWhqxAGM=; b=c8RgLJ5kr7k2+KZlrDUddG9GpPcLje6bPUowbJE5+KP5zDit5NOmmfJlcle/Dk0QQ6 TQA0GDm1bUH+KkyLlbCrJntdNqVWhEQKjUtlQdt+5Qlb8d8WgkV1bD3s2VyCM1RP99Wz 8ACncNcy+ybJOzpKbqC31PCJ3CR5xC2U+XnBG1ybDT2eCLW2tlUX+EnIyYAfzPY51mmU iSjKHEM2QKG6Ft+O4azYayIEPOQdYuByXPJ/+u6N1TroCJdJerME3xoLDCSxzCOM4IUU jd04D5CtKn28WABd/3qPUioIZH4Ly3RDSqBp8HYnnCTx0wQ662jybLoNj/8fxZtTQU1d CcQQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:message-id:to:from:subject; bh=kTZ400t6S59g+62nYPXAifyNjY1Apt/+yvTGWhqxAGM=; b=D4wa6uCGqtbHR6RsODbCxcy+QwxGbOwIuN9Md+bZeIX0GIok1qCh3R1s/dgwmsTekY fyL6bfvdwWH3zV9v57cR7WECmXfyyyvGGAShmLz4Hz2X6TQkpQ8UWcB7u7p3r1AMXcf5 jKq9tawbvnfdiBuLPFft3d2JWDmytakv7m0LSOMGLX+lbvNLqLabjog4a+ooWMLjtd8D zIEx7sFzFOccJ9WymIFihn8DZdlD8ag4zvp5Q6arPzUaDUkhDTMnDHo0lfB69yov39Kf HHKG7kstfJIzQTwwBg6aM702wbk21/tMkTwWFhRCo7QrPSIyDt78pizlli7eojB8Nhcn thpg== X-Gm-Message-State: AOAM533vGu1Y99c0qflI/kseJGCrEcvOdajK7n2hnmYXJi0DtgSwM4pv 7f/CkI2YyZB+SakU3XyU+jEhD5RA4QmtSw== X-Google-Smtp-Source: ABdhPJz+X861R3YTMjPS0niPvt7kOZfZYEaJLzFnT64tECfAYnlz6mD+4i+aDHnZN2lx+BmqVLU96w== X-Received: by 2002:aed:3442:: with SMTP id w60mr3749149qtd.100.1600922845284; Wed, 23 Sep 2020 21:47:25 -0700 (PDT) Received: from hurd (dsl-10-130-151.b2b2c.ca. [72.10.130.151]) by smtp.gmail.com with ESMTPSA id q19sm1413691qtk.74.2020.09.23.21.47.24 for <control <at> debbugs.gnu.org> (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 23 Sep 2020 21:47:24 -0700 (PDT) Date: Thu, 24 Sep 2020 00:48:41 -0400 Message-Id: <87k0wjvkye.fsf@HIDDEN> To: control <at> debbugs.gnu.org From: Maxim Cournoyer <maxim.cournoyer@HIDDEN> Subject: control message for bug #43579 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -1.0 (-) severity 43579 important quit
X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Ludovic =?UTF-8?Q?Court=C3=A8s?= <ludo@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Thu, 01 Oct 2020 12:37:02 +0000 Resent-Message-ID: <handler.43579.B43579.160155580215514 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Andreas Enge <andreas@HIDDEN> Cc: 43579 <at> debbugs.gnu.org Received: via spool by 43579-submit <at> debbugs.gnu.org id=B43579.160155580215514 (code B ref 43579); Thu, 01 Oct 2020 12:37:02 +0000 Received: (at 43579) by debbugs.gnu.org; 1 Oct 2020 12:36:42 +0000 Received: from localhost ([127.0.0.1]:34577 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kNxpC-00042A-Ep for submit <at> debbugs.gnu.org; Thu, 01 Oct 2020 08:36:42 -0400 Received: from eggs.gnu.org ([209.51.188.92]:56188) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <ludo@HIDDEN>) id 1kNxpB-00041x-4o for 43579 <at> debbugs.gnu.org; Thu, 01 Oct 2020 08:36:41 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:53755) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from <ludo@HIDDEN>) id 1kNxp5-0001Gp-Gw; Thu, 01 Oct 2020 08:36:35 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=38014 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from <ludo@HIDDEN>) id 1kNxoz-0004qA-St; Thu, 01 Oct 2020 08:36:32 -0400 From: Ludovic =?UTF-8?Q?Court=C3=A8s?= <ludo@HIDDEN> References: <20200923162121.GA28654@jurong> Date: Thu, 01 Oct 2020 14:36:28 +0200 In-Reply-To: <20200923162121.GA28654@jurong> (Andreas Enge's message of "Wed, 23 Sep 2020 18:21:21 +0200") Message-ID: <87wo0arulv.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) Hallo! Andreas Enge <andreas@HIDDEN> skribis: > The following test file round.cpp does not compile with our g++-10.2.0: > #include <cfenv> > int main () { > return std::fegetround (); > } Could you provide detailed steps to reproduce it? Thanks, Ludo=E2=80=99.
X-Loop: help-debbugs@HIDDEN Subject: bug#43579: g++ does not provide std::fegetround Resent-From: Brett Gilio <brettg@HIDDEN> Original-Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> Resent-CC: bug-guix@HIDDEN Resent-Date: Fri, 02 Oct 2020 02:40:01 +0000 Resent-Message-ID: <handler.43579.B43579.16016063863615 <at> debbugs.gnu.org> Resent-Sender: help-debbugs@HIDDEN X-GNU-PR-Message: followup 43579 X-GNU-PR-Package: guix X-GNU-PR-Keywords: To: Ludovic =?UTF-8?Q?Court=C3=A8s?= <ludo@HIDDEN> Cc: Andreas Enge <andreas@HIDDEN>, 43579 <at> debbugs.gnu.org Received: via spool by 43579-submit <at> debbugs.gnu.org id=B43579.16016063863615 (code B ref 43579); Fri, 02 Oct 2020 02:40:01 +0000 Received: (at 43579) by debbugs.gnu.org; 2 Oct 2020 02:39:46 +0000 Received: from localhost ([127.0.0.1]:38877 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <debbugs-submit-bounces <at> debbugs.gnu.org>) id 1kOAz4-0000wE-Jc for submit <at> debbugs.gnu.org; Thu, 01 Oct 2020 22:39:46 -0400 Received: from eggs.gnu.org ([209.51.188.92]:59622) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from <brettg@HIDDEN>) id 1kOAz2-0000vz-Ta for 43579 <at> debbugs.gnu.org; Thu, 01 Oct 2020 22:39:45 -0400 Received: from fencepost.gnu.org ([2001:470:142:3::e]:38746) by eggs.gnu.org with esmtp (Exim 4.90_1) (envelope-from <brettg@HIDDEN>) id 1kOAyw-0002IR-VE; Thu, 01 Oct 2020 22:39:38 -0400 Received: from [2605:6000:1a0d:48fb::8e5] (port=58236 helo=debian) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from <brettg@HIDDEN>) id 1kOAyw-0002xB-FU; Thu, 01 Oct 2020 22:39:38 -0400 From: Brett Gilio <brettg@HIDDEN> In-Reply-To: <87wo0arulv.fsf@HIDDEN> ("Ludovic =?UTF-8?Q?Court=C3=A8s?="'s message of "Thu, 01 Oct 2020 14:36:28 +0200") References: <20200923162121.GA28654@jurong> <87wo0arulv.fsf@HIDDEN> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/27.1 (gnu/linux) Date: Thu, 01 Oct 2020 21:39:35 -0500 Message-ID: <87o8llxsew.fsf@debian> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Spam-Score: -2.3 (--) X-BeenThere: debbugs-submit <at> debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <debbugs-submit.debbugs.gnu.org> List-Unsubscribe: <https://debbugs.gnu.org/cgi-bin/mailman/options/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=unsubscribe> List-Archive: <https://debbugs.gnu.org/cgi-bin/mailman/private/debbugs-submit/> List-Post: <mailto:debbugs-submit <at> debbugs.gnu.org> List-Help: <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=help> List-Subscribe: <https://debbugs.gnu.org/cgi-bin/mailman/listinfo/debbugs-submit>, <mailto:debbugs-submit-request <at> debbugs.gnu.org?subject=subscribe> Errors-To: debbugs-submit-bounces <at> debbugs.gnu.org Sender: "Debbugs-submit" <debbugs-submit-bounces <at> debbugs.gnu.org> X-Spam-Score: -3.3 (---) Ludovic Court=C3=A8s <ludo@HIDDEN> writes: > Hallo! > > Andreas Enge <andreas@HIDDEN> skribis: > >> The following test file round.cpp does not compile with our g++-10.2.0: >> #include <cfenv> >> int main () { >> return std::fegetround (); >> } > > Could you provide detailed steps to reproduce it? > > Thanks, > Ludo=E2=80=99. I believe `std::fegetround` was introduced in C++11, are you using the appropriate flag? Brett Gilio
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997 nCipher Corporation Ltd,
1994-97 Ian Jackson.