X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mail-lf0-f67.google.com (mail-lf0-f67.google.com [209.85.215.67]) by lists.alpinelinux.org (Postfix) with ESMTP id 7D7335C41AE for ; Fri, 20 Jan 2017 12:35:35 +0000 (GMT) Received: by mail-lf0-f67.google.com with SMTP id h65so8438750lfi.3 for ; Fri, 20 Jan 2017 04:35:35 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=sender:date:from:to:cc:subject:message-id:in-reply-to:references :mime-version:content-transfer-encoding; bh=SiLl0FqPLdNgScFEa/ieWWn7C1Nw2poNvVRMsQ8CQKM=; b=mvA3nBtTbl8dQy4g5bGyu8eYw3uLisGKDTzA427p2cIgTGsXYUZWl6q1RQCWZkTDMB AkKARcj0w7ZOHbDQo3K9VH0WM/woXWjjDmUuU9FZDGVuSCNxCyj6qhd8CsYK6GHEgUEW +llKmePUFKEezsYzKiwbidJBea9xHEMVx+3ZzQxtVMmEP7pxTjdF+0omb29P2uVk1EVP tSTend3crbkk32rmzYrIWzl4rNY09vUldzgXXk70JyyTzaVUw6WGuqi4Q1oaT/zkUW3m 51ZQHnyooMqjk7eH3Vf9bmZ1KibzLZTtZcxVbW+2fJ48B0QLW1HVOJJ7raSKBbOclNxZ TvJg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:sender:date:from:to:cc:subject:message-id :in-reply-to:references:mime-version:content-transfer-encoding; bh=SiLl0FqPLdNgScFEa/ieWWn7C1Nw2poNvVRMsQ8CQKM=; b=K9BghpjSncTlTkM09HO4taDMmpjjPEOc0rPiRoYYz23mKv099/y+IBvF3D6ahhtymF isuPg93At2uGmAPgKgEIMa6EfRcPseAPkAduwHb+YnHsuqooE1Tx5hT+z276tgccJDc9 70LkW5JC1uyj8U7Krj4A2EVzxz1w/+wLUKTeyj2Su/terdYKeFHRZ2eU6D75tR17c91D K7jJW30w2m/z2AmmkV6rdHlPjE5zaQN9tGAG2OGMiksLkRqXpea8t8Zuv6HySIVuOeaC GgSU32g/rHAzFvW8uAiFJCGpFODYueLyvLnvMqWKnN5h21mJ5KenAcjkCpHiB6bQq3R9 w65Q== X-Gm-Message-State: AIkVDXI90isaCBVJs1cR3wFsL6pc3zlDKanFuyZbNl70LTv9t0gjSAlAqhvwd594ERwguA== X-Received: by 10.25.151.20 with SMTP id z20mr4820285lfd.92.1484915734732; Fri, 20 Jan 2017 04:35:34 -0800 (PST) Received: from vostro ([2001:1bc8:101:f402:e66f:13ff:fef3:8cd0]) by smtp.gmail.com with ESMTPSA id o5sm3414409lfo.35.2017.01.20.04.35.34 (version=TLS1_2 cipher=ECDHE-RSA-CHACHA20-POLY1305 bits=256/256); Fri, 20 Jan 2017 04:35:34 -0800 (PST) Sender: =?UTF-8?Q?Timo_Ter=C3=A4s?= Date: Fri, 20 Jan 2017 14:35:32 +0200 From: Timo Teras To: Breno Leitao Cc: alpine-aports@lists.alpinelinux.org Subject: Re: [alpine-aports] [PATCH] Add support for ppc64le Message-ID: <20170120143532.1aa59d71@vostro> In-Reply-To: <20170120142510.7dd61350@vostro> References: <1484670631-10385-1-git-send-email-brenohl@br.ibm.com> <20170120142510.7dd61350@vostro> X-Mailer: Claws Mail 3.13.2 (GTK+ 2.24.28; x86_64-alpine-linux-musl) X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Fri, 20 Jan 2017 14:25:10 +0200 Timo Teras wrote: > On Tue, 17 Jan 2017 14:30:31 -0200 > Breno Leitao wrote: > > > This is a patch that adds support for ppc64le platform. Currently, > > musl fails to build with long double as 128-bits, because POWER does > > not implement IEEE long double but IBM long double which causes the > > following error: > > > > unsupported long double type musl > > > > This patch just turns "long double" into "double" for ppc64le. > > Should this be in gcc default flags instead? I suspect almost nothing > will work with 128-bit double if c-library does not support it. And > assume this affects ABI too? http://wiki.musl-libc.org/wiki/Supported_Platforms powerpc (needs gcc built with --enable-secureplt --with-long-double-64, and -Wl,--secure-plt to link dynamic binaries.) Please add these as default options for gcc. Otherwise the toolchain is more or less broken. This makes also the musl CFLAGS hack unnecessary. Please submit the patch for recognizing the CARCH separately. Thanks, Timo --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---