From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr1-x433.google.com (mail-wr1-x433.google.com [IPv6:2a00:1450:4864:20::433]) by sourceware.org (Postfix) with ESMTPS id 5B6363858C50 for ; Mon, 28 Mar 2022 19:52:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 5B6363858C50 Received: by mail-wr1-x433.google.com with SMTP id i4so3050232wrb.5 for ; Mon, 28 Mar 2022 12:52:56 -0700 (PDT) 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:cc:content-transfer-encoding; bh=hXGv9uogX1N97kZIJGjwCdRj8LsSUyoKFCpqSpToe1k=; b=T80Hi2wWgNc9+DTQupWBRZIc9XqYXYIpjpU5YBGVJ7ezXDU/XXcdjLm0yPXmW5jfeU w/56z0YYkQIA9Kf1ZAqcKu5iuTE6t2aDQ+rulqDWHQ3NMmJCtFqeTFZiHV4PS1e91eMw T9D+ZxdGbEhjW6qLRKqiuptfZtJhbrDLQ8OnynPgh99i8rugEOCNbhzbup+Px5mPBHjJ rKK5DoVfd0z2+K2wq+fvNOotPfKh+V2c0H3L8V+fxcTMlonbU3QsAHlAABCCRZRTLMOk mOT2rGEHRJ8CKhiSKQoNUfhP00oIBQWlLAvbGHwz0pNJLrYelFumPFRNz2PKQSkYqo5e JPOA== X-Gm-Message-State: AOAM533LyGqv73Pt9eTe6ua1DhDY+Ct6pKLigUmIUVC7xMI4HV9uN6h7 Pvjy8nxg/fPPoWTFFC4u587xqP58jerd2AMYu8w= X-Google-Smtp-Source: ABdhPJzL4HYLRJlSIAFzY2ha8IiwgPE5BBBm+yJcfOnKWRUWwGmTstp9QyVUKiLKTZMD6GIhGkpbPfM4A3YLLQ4rc+k= X-Received: by 2002:adf:f943:0:b0:203:b456:c71d with SMTP id q3-20020adff943000000b00203b456c71dmr25728852wrr.568.1648497174992; Mon, 28 Mar 2022 12:52:54 -0700 (PDT) MIME-Version: 1.0 References: <222147991.846192.1648491515241.ref@mail.yahoo.com> <222147991.846192.1648491515241@mail.yahoo.com> In-Reply-To: <222147991.846192.1648491515241@mail.yahoo.com> From: Jonathan Wakely Date: Mon, 28 Mar 2022 20:52:43 +0100 Message-ID: Subject: Re: Need to build libgfortran.a and libquadmath.a To: Andy Bowery Cc: "gcc-help@gcc.gnu.org" Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Spam-Status: No, score=-1.0 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, T_SCC_BODY_TEXT_LINE autolearn=ham autolearn_force=no version=3.4.4 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on server2.sourceware.org X-BeenThere: gcc-help@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-help mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 28 Mar 2022 19:52:58 -0000 On Mon, 28 Mar 2022 at 19:19, Andy Bowery via Gcc-help wrote: > > Help! I need to build both libgfortran.a and libquadmath.a for an embedde= d ARM-based environment. These libraries are currently not available for th= is environment, so I going to have to build them myself. Both need to be st= atic libraries. I have downloaded the GNU GCC project and I am currently r= unning 'make' (in the top level gcc folder) on this in this environment, bu= t it is taking days on this limited environment! And I am not even sure it = will produce the files I need. Is there a quicker way of building these fil= es? Don't build on the ARM system, build a cross compiler that runs on a much more powerful multicore system. > Will this make process produce these particular files? It depends how you configured GCC.