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.1 required=5.0 tests=DKIM_ADSP_CUSTOM_MED, DKIM_INVALID,DKIM_SIGNED,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 14864 invoked from network); 12 Jan 2021 01:26:39 -0000 Received: from mother.openwall.net (195.42.179.200) by inbox.vuxu.org with ESMTPUTF8; 12 Jan 2021 01:26:39 -0000 Received: (qmail 19473 invoked by uid 550); 12 Jan 2021 01:26:34 -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 18419 invoked from network); 12 Jan 2021 01:26:33 -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=f/XMPYV7itm+pVQTqvZpkBWoUPBfZtZWKonqghZT6go=; b=DseoFYLrZS7/F1UCQun/wHymAMpogvsSTm5xGuEBbSv2/tGDkmEXhO6Iifv3rtI6/s lip0EBmw+GG3mIROeauTGcL3RP4zqsRTT86/Utj9JWTWTOrgB3Uy91+dT+uQRbaz4gVX i+Hp5riOeCA6/B2it+hp95D8PVkCdJwlfT53skAHP+KwxwQyKJxDcff4WnV6yNcA2Q++ WVntiLHDM6WF3uwuVcZPJghhhlBVvMnDLvsmWZSUu8tF1FdJykBL9bkUdoCyCNr7bgFn 2dYUDs1NQgElwB4PlKKmus4dUDgdHeGBKDPCQvb5tdlr97EAsAdPEpE+tBUw8v5fKWgc s3jA== 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=f/XMPYV7itm+pVQTqvZpkBWoUPBfZtZWKonqghZT6go=; b=ebwX9ob6qmyuaJZpWZqa3G/sPcncj/DcYiLrm2poemmyjaj9hJhJfRAIu/7UH8KJSY Nr9hgUEcnEpUMhEkhFNBJo42687IdH/A0mmfTSqFs/+1LVUNghNO6cZdy6bGX0DR7OCN DObMekFiv42p9IP3gCJe5JpRkBDPlXmSFmsu/q9GPRpb6B4xNqAkqkAjWbe+yuxuL2V9 Rm0+toNPEBFWfF2HBiCKFhyuOIaPFw9S84vlcnPczAEjGdFvZ2VhwVXIZRNzfPcpn0SJ cb4QqAkaE98kTy/9NludBKrYOE6r2c+4G/ojqCkiFfhpg3Gh+4PA/6GZpEyydYhngF7T RJvg== X-Gm-Message-State: AOAM530GJwa05RHuqwVjqIkan/Kf4S71ZlQB+QLJI69Q1J99Qipd57hL m0ab3ojxT+KNEulG04bp3JB2FBa5UR6viUUbPWm8w+kIJIk= X-Google-Smtp-Source: ABdhPJxwk5PxNUt/dll7HHuWiUx8bW/Mw2WlZOCmEqgyYc2A3OG5s4wSobbjPW5kJx/BF04W6JmpkCh2LTa61otQtBo= X-Received: by 2002:a50:9310:: with SMTP id m16mr1507378eda.94.1610414781857; Mon, 11 Jan 2021 17:26:21 -0800 (PST) MIME-Version: 1.0 References: In-Reply-To: From: Patrick Oppenlander Date: Tue, 12 Jan 2021 12:26:10 +1100 Message-ID: To: musl@lists.openwall.com Content-Type: text/plain; charset="UTF-8" Subject: [musl] Re: [PATCH] llvm/clang support for musl-cross-make On Tue, Jan 12, 2021 at 8:23 AM Patrick Oppenlander wrote: > > On Mon, Jan 11, 2021 at 4:33 PM Patrick Oppenlander > wrote: > > > > > > I've attached a patch which should apply the current tip of the musl-cross-make > > tree. > > > > The musl patch included is a bit overly pessimistic -- the crash only > occurs for armv7m so the #if test should probably be narrowed down a > bit. > > I also forgot to mention that I'll provide documentation updates if > you are happy to go ahead in this direction. > A couple more issues: * There's some missing symlinks (cc, c++, cpp). * The installed toolchain is missing a stdatomic.h. I'm looking into stdatomic but haven't managed to get anywhere yet. Patrick