From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp2.axis.com (smtp2.axis.com [195.60.68.18]) by sourceware.org (Postfix) with ESMTPS id C1E653858281; Wed, 31 May 2023 15:28:06 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org C1E653858281 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=axis.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=axis.com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=axis.com; q=dns/txt; s=axis-central1; t=1685546887; x=1717082887; h=from:to:cc:subject:mime-version: content-transfer-encoding:message-id:date; bh=CRdehi5MA44cgyoxQJ9/9kLOJev51lv1VlOfGIWFq/E=; b=TPLWTUkqIR7AtWxKbL4AmY6PwlsNB/smHiV7No4xtklj40ShFzanLxnj 7lF85gX1gAEDaew7nulQChaw4u5/yAQFJnKpxFQnoa4ld+OewPFEa36Tw /LNFeBb3SehSxefSQrluwBl7q3pWFRYyCY+zM1yu+J56w8pjTQY4LNZFt gQxOixJExfFaJAndnYLbU1VRyuH/TAOnshLU/zFKT3UN1mHsWIdkBY+ce 7DYJ6zg9UIl8nNCvEx2CrZgbjM9Uj+ommD+wznFBEpYws8IfQA9MF7lnr PuRs3MOWCmjovJ9RI4qEmDtrsvJaWBe/gnTSAu91dHaTAIqSfV5ofsxPE A==; From: Hans-Peter Nilsson To: CC: , Subject: Build-break in libstdc++-v3 at r14-1442-ge1240bda3e0bb1 for non-float128 targets MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8BIT Message-ID: <20230531152805.9D4732043D@pchp3.se.axis.com> Date: Wed, 31 May 2023 17:28:05 +0200 X-Spam-Status: No, score=-5.4 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS,TXREP,T_SCC_BODY_TEXT_LINE 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: Since I don't see a quick fix at r14-1444-g3f4853a5f00fab, I thought I'd better notify the author (I have written authors if there was more than one ;-) of suspect commits in the range r14-1425-g80ee7d02e8db48..e1240bda3e0b for the build-break at r14-1442-ge1240bda3e0bb1 for cris-elf, where I get: /x/gcc/libstdc++-v3/src/c++17/floating_from_chars.cc:1330:47: error: '_Float128' is not supported on this target 1330 | from_chars(const char* first, const char* last, _Float128& value, | ^ /x/gcc/libstdc++-v3/src/c++17/floating_from_chars.cc:1330:49: error: expected identifier before '_Float128' 1330 | from_chars(const char* first, const char* last, _Float128& value, | ^~~~~~~~~ /x/gcc/libstdc++-v3/src/c++17/floating_from_chars.cc:1330:49: error: '_Float128' is not supported on this target /x/gcc/libstdc++-v3/src/c++17/floating_from_chars.cc:1330:49: error: expected ',' or '...' before '_Float128' /x/gcc/libstdc++-v3/src/c++17/floating_from_chars.cc: In function 'std::from_chars_result std::from_chars(const char*, const char*, int)': /x/gcc/libstdc++-v3/src/c++17/floating_from_chars.cc:1340:53: error: 'fmt' was not declared in this scope; did you mean 'fma'? 1340 | auto res = std::from_chars(first, last, ldbl_val, fmt); | ^~~ | fma /x/gcc/libstdc++-v3/src/c++17/floating_from_chars.cc:1342:5: error: 'value' was not declared in this scope 1342 | value = ldbl_val; | ^~~~~ make[5]: *** [Makefile:587: floating_from_chars.lo] Error 1 brgds, H-P