From patchwork Sun Jul 23 20:03:38 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bernd Kuhls X-Patchwork-Id: 792582 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=busybox.net (client-ip=140.211.166.138; helo=whitealder.osuosl.org; envelope-from=buildroot-bounces@busybox.net; receiver=) Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3xFwS95gWZz9s82 for ; Mon, 24 Jul 2017 06:03:53 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id CE21886190; Sun, 23 Jul 2017 20:03:47 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id oFK9T9UsXSnd; Sun, 23 Jul 2017 20:03:45 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 8B4B186185; Sun, 23 Jul 2017 20:03:45 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from silver.osuosl.org (smtp3.osuosl.org [140.211.166.136]) by ash.osuosl.org (Postfix) with ESMTP id C80841C0C39 for ; Sun, 23 Jul 2017 20:03:44 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id C275826995 for ; Sun, 23 Jul 2017 20:03:44 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F72x+Y55kMzz for ; Sun, 23 Jul 2017 20:03:43 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailout04.t-online.de (mailout04.t-online.de [194.25.134.18]) by silver.osuosl.org (Postfix) with ESMTPS id 3FFEE26828 for ; Sun, 23 Jul 2017 20:03:43 +0000 (UTC) Received: from fwd14.aul.t-online.de (fwd14.aul.t-online.de [172.20.26.242]) by mailout04.t-online.de (Postfix) with SMTP id 00CE641BE32D; Sun, 23 Jul 2017 22:03:40 +0200 (CEST) Received: from fli4l.lan.fli4l (V+6lg+ZcZhY9eqavUgtqzSPVzb8cAym9qljpTuZ20t0VUsOsuoDFGyyCrePot+Zg8a@[79.228.22.8]) by fwd14.t-online.de with (TLSv1:ECDHE-RSA-AES256-SHA encrypted) esmtp id 1dZN6K-1vHvPc0; Sun, 23 Jul 2017 22:03:40 +0200 Received: from mahler.lan.fli4l ([192.168.1.1]:41572 helo=kuhls.lan.fli4l) by fli4l.lan.fli4l with esmtp (Exim 4.89) (envelope-from ) id 1dZN6J-0005yj-Ir; Sun, 23 Jul 2017 22:03:39 +0200 From: Bernd Kuhls To: buildroot@buildroot.org Date: Sun, 23 Jul 2017 22:03:38 +0200 Message-Id: <20170723200339.12575-1-bernd.kuhls@t-online.de> X-Mailer: git-send-email 2.11.0 X-ID: V+6lg+ZcZhY9eqavUgtqzSPVzb8cAym9qljpTuZ20t0VUsOsuoDFGyyCrePot+Zg8a X-TOI-MSGID: 4b741fef-4b91-478a-876a-ebe16532790c Cc: Thijs Vermeir Subject: [Buildroot] [PATCH 1/2] package/x265: disable altivec on ppc64 X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Disable altivec support until gcc problems are fixed: https://bitbucket.org/multicoreware/x265/issues/320/fail-to-build-on-power8-le#comment-34076791 Fixes http://autobuild.buildroot.net/results/419/41910d44ff98c60a6bb9fd3b6a10bd4d0b98d646/ Signed-off-by: Bernd Kuhls --- package/x265/x265.mk | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/package/x265/x265.mk b/package/x265/x265.mk index 2907ba373..2facf2c1d 100644 --- a/package/x265/x265.mk +++ b/package/x265/x265.mk @@ -16,6 +16,12 @@ ifeq ($(BR2_i386)$(BR2_x86_64),y) X265_DEPENDENCIES += host-yasm endif +# disable altivec, it has build issues +# https://bitbucket.org/multicoreware/x265/issues/320/ +ifeq ($(BR2_powerpc64)$(BR2_powerpc64le),y) +X265_CONF_OPTS += -DENABLE_ALTIVEC=OFF +endif + ifeq ($(BR2_SHARED_LIBS)$(BR2_SHARED_STATIC_LIBS),y) X265_CONF_OPTS += -DENABLE_SHARED=ON -DENABLE_PIC=ON else