From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/14236 Path: news.gmane.org!.POSTED.blaine.gmane.org!not-for-mail From: Reinoud Koornstra Newsgroups: gmane.linux.lib.musl.general Subject: Re: where to find musl-gcc wrapper script Date: Mon, 17 Jun 2019 17:54:22 -0700 Message-ID: References: <20190617233023.GK1506@brightrain.aerifal.cx> Reply-To: musl@lists.openwall.com Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Injection-Info: blaine.gmane.org; posting-host="blaine.gmane.org:195.159.176.226"; logging-data="156888"; mail-complaints-to="usenet@blaine.gmane.org" Cc: musl@lists.openwall.com To: Rich Felker Original-X-From: musl-return-14252-gllmg-musl=m.gmane.org@lists.openwall.com Tue Jun 18 02:54:51 2019 Return-path: Envelope-to: gllmg-musl@m.gmane.org Original-Received: from mother.openwall.net ([195.42.179.200]) by blaine.gmane.org with smtp (Exim 4.89) (envelope-from ) id 1hd2Of-000egJ-L1 for gllmg-musl@m.gmane.org; Tue, 18 Jun 2019 02:54:49 +0200 Original-Received: (qmail 1539 invoked by uid 550); 18 Jun 2019 00:54:46 -0000 Mailing-List: contact musl-help@lists.openwall.com; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-ID: Original-Received: (qmail 1521 invoked from network); 18 Jun 2019 00:54:46 -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 :cc; bh=7NRuWAPFSCuzCyE87umltBVblrOrLHI98P3A3V0R/tE=; b=h5Nd6CDK6ZEuRwKH8kebw1RfTgS19ZZIsHfydE572wzbmv519a1Yqajma1VehdVI4E JH4Mb+zIq32PfxVOgCYlLfZQfKbG6Asb1KXd7ZRDkY6nxuMwitpgj+rXgd08dhDaxlQH XmLmYrTnYdRtZVjqlrlb4g1AElDS/a1JLdzLA0u1A1qo3P1VMHbSv4Q5cGRmgs6TVYER QNAXqVM9HgLF0fQyFaMKKUNz3EYS/TVbCO3+ZLErpAAedimijlzX2TTAUmvLHpHc45e2 1fo4OYoFUkqb9CAW6Vb3fW4gssRZWglBU8IsYO4uFPAdx8SpJDTGHWgnW7jRG3qY99/6 j/EQ== 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:cc; bh=7NRuWAPFSCuzCyE87umltBVblrOrLHI98P3A3V0R/tE=; b=OOYmzz2YGBCaoFNBV/X769NoHkpQIw0ffwN144fcIVXGRJJ46IgJ/tuUfmW+IroisE ytXaW8+jbrJJZehCloz5xOiv6OYdmLCt3ax1sgqf5HuXXQ5oAp/DRXH2J6S/Hx4zZUQ6 euOQg9NE4yuspUmivE5tqVjI09GTiIf33os+tiTZRq4rpL24sbDAodXKFO9o/GEyYe4r y2vsaX+i0SiaWNkq5uTwoxp/3e8v3u6DHAIhCxFHXBG2hChQIkfyJ8YiJlsjQB+M4SQW HqmtlHWmpmd/NYkPT7mEaDQjkh+pFjsEUa2uEYNZ8hShCCiKqs4J90vSTlMmGDkMKCoi VATQ== X-Gm-Message-State: APjAAAVDeHqXPCkQuBPWGnOhv5rdLspDN901y6STd7oOP8Uru/gNFUpX tn5kxF8qOm2+h+LfEUVQqZkH5hpbf/c8Pj29XwI= X-Google-Smtp-Source: APXvYqwARpRgXqUdTi98wfAgyZicnUjLWFZ2FJ0MXZNnwEcI/wEjbzwlkWnL8WVACBUaqIqccaBkYxbet2vQjzQQDXo= X-Received: by 2002:a9d:6a19:: with SMTP id g25mr59184721otn.77.1560819274007; Mon, 17 Jun 2019 17:54:34 -0700 (PDT) In-Reply-To: <20190617233023.GK1506@brightrain.aerifal.cx> Xref: news.gmane.org gmane.linux.lib.musl.general:14236 Archived-At: In this case, my application is simple, I need to compile and application against musl, instead of glibc. I do not need to musl compiled gcc for this? Thanks, Reinoud. On Mon, Jun 17, 2019 at 4:30 PM Rich Felker wrote: > > On Mon, Jun 17, 2019 at 03:49:19PM -0700, Reinoud Koornstra wrote: > > Hello Everyone, > > I did get the sources and build from musl-cross-gcc at github.com. > > Building works fine, however, I cannot find the musl-gcc script to compile. > > The musl-gcc wrapper script is for repurposing an existing host > toolchain for a different libc (glibc) to use it with musl. You don't > use it with a proper cross compiler toolchain or on a musl-native > system. The output of musl-cross-make will be a set of utilities > prefixed with the target tuple, e.g. x86_64-linux-musl-gcc, etc., in > the bin directory under wherever you installed the cross toolchain. > > Rich