From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-3.4 required=5.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,FREEMAIL_FROM,MAILING_LIST_MULTI,RCVD_IN_DNSWL_MED, RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 25892 invoked from network); 10 Jun 2022 12:10:59 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 10 Jun 2022 12:10:59 -0000 Received: (qmail 7801 invoked by uid 550); 10 Jun 2022 12:10:57 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Reply-To: musl@lists.openwall.com Received: (qmail 7766 invoked from network); 10 Jun 2022 12:10:56 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20210112; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=e/v4d9SQi466ISRfX75m7MheAYfdnnnkQt0M41LmBTE=; b=jc/KrvRQu2QWXjru16Fh+sxGrngbl7SEXZ9P87n7lo0xCP1Uog7IF+4eNWiYoxE5sp 3SWIonc6Kb/kJt7lXiKU3+GEZnNEZHG8OovQxnMkjp3Q4XMjvhz9mtC1joVQRXP+HYZq ZDyobhDSGBwmkPEbXmVPWcLFDpIDP4bMjE7sDmfL/ZGsLDDreirNTO0c6T6hKVEnTcBO mOq0BmEpqpJ1dlofXSfGCYRJQjObGIzoLXiZBzF6dbYwL1yPUwcxgPlHBeGqzDfKPjwh CC5r7zENwrB6scn7okfkeyXpYZRCJ2pDAXVJIURI+rBMOti7iuY24VGolfVw0rsURRye 2/+A== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=e/v4d9SQi466ISRfX75m7MheAYfdnnnkQt0M41LmBTE=; b=3nVqrxSEChmP4gVAbIdO0XKan17xm5My8q7A+V6hHcWsA9mHF6+ne/Pj0XqOQUYz+y OhEllDdU3jnIvcY6mb/j8DA9ZQVttpVNC+DCJo2vYfWCia+17BpafrIgA7cXhWFq83dz V58Vgu1KS/CW0M3ANfudtvQt/2P+cvcZCUEGU/SA0ksivtPEWUXil8B2/CREmMyd2JEo FoaXrpufnxH1MDDRbQm2HAJdmJEcWW2Eujh9N8A2w57b/UB258blX6mjK2+1MEO6LkXe JyvIs9zMvwp0m7gAN4Vbd+MgqBH0+9QwoUhIP1UKWPcXdiT9PZUI+M2olhX+gDWChsXE Tc8g== X-Gm-Message-State: AOAM530zZc0Gln8TopIrCtV0VP+gd5fsCKJzrN5R53Oh4sU154opL5ky gPn1aLRqqU25ib8ek9CrzaGjpLTXQLM4p+ZCVfufZLEc X-Google-Smtp-Source: ABdhPJz406yKdo+qxhL1VV2nZ+nmq7owO4rpg8IpAws87i+lNFu0+AvBz9twFfE4Ai8s/rlJCbpl6NPwgicdWsEclC8= X-Received: by 2002:ab0:4910:0:b0:35d:19ce:f020 with SMTP id z16-20020ab04910000000b0035d19cef020mr40282735uac.104.1654863044144; Fri, 10 Jun 2022 05:10:44 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: David Edelsohn Date: Fri, 10 Jun 2022 08:09:46 -0400 Message-ID: To: musl@lists.openwall.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [musl] Configuration gives error on ppc64le arch for must repo Are you using a toolchain that now supports IEEE128 long double? Musl was not going to support the previous IBM 128 double-double long double format. Now that PPC64 Linux supports IEEE128, there may be a mismatch. Thanks, David On Fri, Jun 10, 2022 at 7:15 AM Ankit Paraskar wrote: > > Dear Team, > > > > While trying to configure musl package on power arch(ppc64le) we are getting the below configure issue > > > > Reflink:- > > musl - musl - an implementation of the standard library for Linux-based systems (musl-libc.org) > > > > Musl version 1.2.1:- > > Download link:- https://git.musl-libc.org/cgit/musl/snapshot/musl-1.2.1.tar.gz > > > > > > Detailed issue. > > > > Architure used:- > > uname -a > > Linux f1a836851f19 4.18.0-348.12.2.el8_5.ppc64le #1 SMP Mon Jan 17 06:49:39 EST 2022 ppc64le ppc64le ppc64le GNU/Linux > > > > > > Issue faced:- > > ./configure > > ........... > > checking preprocessor condition _CALL_ELF == 2... true > > checking preprocessor condition __LITTLE_ENDIAN__... true > > checking preprocessor condition _SOFT_FLOAT... false > > configured for powerpc64 variant: powerpc64le > > checking whether compiler's long double definition matches float.h... no > > ./configure: error: unsupported long double type > > > > > > > > Regards, > > Ankit Paraskar > >