From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.org/gmane.linux.lib.musl.general/11277 Path: news.gmane.org!.POSTED!not-for-mail From: Rob Landley Newsgroups: gmane.linux.lib.musl.general Subject: powerpc toolchain question Date: Sun, 23 Apr 2017 19:28:14 -0500 Message-ID: <1f55bf91-e1d8-8609-d848-8d9141629722@landley.net> Reply-To: musl@lists.openwall.com NNTP-Posting-Host: blaine.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Trace: blaine.gmane.org 1492993711 13748 195.159.176.226 (24 Apr 2017 00:28:31 GMT) X-Complaints-To: usenet@blaine.gmane.org NNTP-Posting-Date: Mon, 24 Apr 2017 00:28:31 +0000 (UTC) User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.8.0 To: musl Original-X-From: musl-return-11292-gllmg-musl=m.gmane.org@lists.openwall.com Mon Apr 24 02:28:26 2017 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.84_2) (envelope-from ) id 1d2Rre-0003VI-Lc for gllmg-musl@m.gmane.org; Mon, 24 Apr 2017 02:28:26 +0200 Original-Received: (qmail 20062 invoked by uid 550); 24 Apr 2017 00:28:30 -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 20023 invoked from network); 24 Apr 2017 00:28:29 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=landley-net.20150623.gappssmtp.com; s=20150623; h=to:from:subject:message-id:date:user-agent:mime-version :content-transfer-encoding; bh=eehcFdqWPxlrFQO/20B0WNv4yLfng/zHOUJ2fadOmjI=; b=d5NEx9XgOh6IF95LluGZqnW0/7ygYDFv7oyWl39ToSh3Dr7op5Dsh/IrI1lxSfcDbb nwOMpLT7LuhylB+aYVkyZJy4Ko+K1TrOLq7Md6SkGJLA4ZuO2pcpCEY1yz8Ap//h/wsb MGzSXwXM75+KfljkJKMrEe/ZTrA8XVTt2AfQFGvAowldiz1CPAc5sMMt3URxp6k8Xc9X rHjEM0G2/4iPtCO5cReXWn46xzffGshopxxpQTvSJ0WzFQvKI3XodjTzjgOrn+2ndIJT +8mZUIYTfK0PaQR+sg4TEWtsJSB3vqutyYfGz0YkmavSYi/r+4r2QJHaVHJGd/eYvHwf UCHA== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:to:from:subject:message-id:date:user-agent :mime-version:content-transfer-encoding; bh=eehcFdqWPxlrFQO/20B0WNv4yLfng/zHOUJ2fadOmjI=; b=L07nTE0pBy8DoqOr94uDDXiYSsSPGHsJQlwtyHkZTpht2wbeA51wTaXZNRtD8auECu s8iJ2rp5DwGlfQvPX0ia/JSxYERLb/vnhFrrorEqpVdiNRigzP/9dOZq3mkYZoqU+31a 72xNH2BPci0HkuUfLGOlDhlpsRUh7C2erfm/Ceva87KA6pFin39AcLDRPVNgU0wWBLkZ DORk+pmL2RgsgKnpNtgeCF9XG9wC6+8Il/BHLYdWewTo/gIAyXMAK1OTHmGHjyQt+BUO K7OkETY5GKEu2tnejFHPygjIqdBs+UQf5F9xsID7oUf5gl985+v/z27fQC41HQgJ2JcR sNwA== X-Gm-Message-State: AN3rC/73pyUhVdhg9af5mHlO8dtXv3wVKnLMel6Igp75HY7FRozpH3/f ivApmCgnSr+27MhhpBw= X-Received: by 10.202.72.88 with SMTP id v85mr4231843oia.141.1492993697017; Sun, 23 Apr 2017 17:28:17 -0700 (PDT) Xref: news.gmane.org gmane.linux.lib.musl.general:11277 Archived-At: I checked that mcm-buildall.sh script (the one I've sent here a few times) into https://github.com/landley/mkroot and it's building a simple kernel and root filesystem with the musl-cross-make toolchain that boots under qemu. So far I've done x86-64, sh4, and powerpc32 kernels. But back in Aboriginal Linux, the 32 bit ppc target had gcc building with: GCC_FLAGS=--enable-secureplt # --with-long-double-64 (default on 4.2.1) I.E. my old 4.2.1 toolchain was doing --enable-secureplt and I had a comment that newer ones needed --with-long-double-64. I'm not currently telling the gcc configure to do either of these. Should I be? (Seems to work but I'm not sure anything's using floating point yet...) Rob