From owner-svn-ports-all@freebsd.org Mon Jun 15 15:04:28 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0DFB8337177; Mon, 15 Jun 2020 15:04:28 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2610:1c1:1:6074::16:84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "freefall.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49lvkM6S6fz3V9C; Mon, 15 Jun 2020 15:04:27 +0000 (UTC) (envelope-from jbeich@freebsd.org) Received: by freefall.freebsd.org (Postfix, from userid 1354) id D2C2C798B; Mon, 15 Jun 2020 15:04:27 +0000 (UTC) From: Jan Beich To: Piotr Kubaj Cc: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: Re: svn commit: r538880 - head/graphics/libglvnd In-Reply-To: <366w-5qb6-wny@FreeBSD.org> (Jan Beich's message of "Mon, 15 Jun 2020 16:58:21 +0200") References: <202006151432.05FEW8Jo096922@repo.freebsd.org> <366w-5qb6-wny@FreeBSD.org> Date: Mon, 15 Jun 2020 17:04:25 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 15 Jun 2020 15:04:28 -0000 Jan Beich writes: > Piotr Kubaj writes: > >> Author: pkubaj >> Date: Mon Jun 15 14:32:08 2020 >> New Revision: 538880 >> URL: https://svnweb.freebsd.org/changeset/ports/538880 >> >> Log: >> graphics/libglvnd: fix build on powerpc64 elfv2 >> >> Clang fails to build this port, use GCC for now. > > What was the error? It built fine with GCC 9 on amd64. Err, I've found the error log. However, the logs are transient thus may disappear in a year, unlikely to be cached by Wayback Machine. http://pylon.nyi.freebsd.org/data/head-powerpc64-default/p538068_s361855/logs/errors/libglvnd-1.3.1.log > FAILED: src/GLdispatch/vnd-glapi/692a89e@@libglapi@sta/entry_ppc64_tls.c.o [...] > :69651:14: error: invalid operand for instruction > ld 12, (4096*8)@l (11) > ^ > :69668:14: error: invalid operand for instruction > ld 12, (4097*8)@l (11) This looks like something that maybe fixed by BUILD_DEPENDS+= ${BUILD_DEPENDS_${ARCH}} BUILD_DEPENDS_powerpc64= as:devel/binutils CFLAGS_powerpc64= -no-integrated-as Did you try?