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 autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 5567 invoked from network); 26 Jul 2021 03:50:14 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 26 Jul 2021 03:50:14 -0000 Received: (qmail 16296 invoked by uid 550); 26 Jul 2021 03:50:12 -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 16278 invoked from network); 26 Jul 2021 03:50:11 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:references:in-reply-to:from:date:message-id:subject:to; bh=No34iraLV5SI5kSyFOfsgUn22TipLvSZ3UXqRO+5Aa0=; b=iUYm0kp9B/mJpwuV+p7Q+ZxBL6WUbafmB454Er9DE1TMW2gekdjb+p6nLfLspGWV67 uxEv3652DGV28emp23XZgnU6fe6lbkqjGnHaCNHqAlrmdyzoNkiQeukatcsqrE5WJMJ2 5II7RefZUxs99iUiC1vtgSwlVZjAhSJDdMDeaqRQXLH2hVLEwzHbsnUTiCEHti6C/G9s hAlhaD3YvXVW/pgAxa9CzcvU6L8RSWK+JTwIvM58kquzT7j2ny1cM/wAHfEK2VlhnCTu VmzWLdRo4ZTfM4XaJorprTkvTasI8AOFcXWdQXc/lltg8ZBLoWRUE3m++ULP4/fLVz6q ODiA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to; bh=No34iraLV5SI5kSyFOfsgUn22TipLvSZ3UXqRO+5Aa0=; b=JDaq7o99A+97n2dA1ap/qtWiSqn+zbqDcLZug0QSYABk0umIGYwE6jx45VDRnhtFAV a60KpZTrDBlTa6Jz4ARyn9+S/H3UkXJmc0VNCG3SEWEvO4uIkCvhB+P/D1OJ4AJAOEYo ZCU3iYG8vkrDVrbUzIixKXzY7+z/t6MuOw1o9c3R3N4Oy/ZsbKCfPw/+rE3K7xNX8+Xp gbTb/wiNgE6odFICJemJE0LQ/UsDBJzTUtVYxWd5o4OgCYa1nBkjbGywjPNx6b7Y9/lg IwFcA4EBcbC1WOyXIF/KzQiNEGOxq8EqBytJnQk+yxJWlZYIEjDDF47g+TwEpOi2YS9A TiMw== X-Gm-Message-State: AOAM531pcVmqJ4Iu52uj4vcNY97Yyb3It52DdB5Y0IRbveV2rXB4z/uN W9a8U4gQyRtHc49hnDrjGvzUxMHI2Sy1geO5d2VgoIfKso0= X-Google-Smtp-Source: ABdhPJxxdehvN/OkG0I80IwqixoAQ1IWW1Der/wJUXfmeM5BC9GWdoiz3VoAXmYRG8zDea8HtGebXA8HkjmBo8i0e5o= X-Received: by 2002:a17:907:6289:: with SMTP id nd9mr14995219ejc.384.1627271400159; Sun, 25 Jul 2021 20:50:00 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Patrick Oppenlander Date: Mon, 26 Jul 2021 13:49:49 +1000 Message-ID: To: musl@lists.openwall.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [musl] FYI: llvm-musl-hexagon toolchain build script v1 On Mon, Jul 26, 2021 at 9:54 AM Rob Landley wrote: > > Note the first three lines are the 3 git archives to clone into the current > directory. (llvm, linux, and qualcomm's musl-hexagon fork) > > Loosely based on the > https://github.com/qemu/qemu/blob/master/tests/docker/dockerfiles/debian-hexagon-cross.docker.d/build-toolchain.sh > with a _LOT_ of simplification. Yes, it can still be slimmed down further, > working on it ala > https://lists.nongnu.org/archive/html/qemu-devel/2021-07/msg04610.html > Hi Rob, FYI I have a fork of musl-cross-make with clang support here: https://github.com/apexrtos/musl-cross-make/tree/clang The bit with all the cmake cra^H^H^Hmagic is here: https://github.com/apexrtos/musl-cross-make/blob/clang/litecross/Makefile.clang Looks like you've done a better job of minimising flags than me (cmake always gives me a headache). If it's OK with you I'd like to go through your flags and see if I can tidy mine up a bit. Patrick