From owner-svn-ports-all@freebsd.org Sun May 3 11:36:16 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 4235D2DAE16; Sun, 3 May 2020 11:36:16 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 49FP8010rxz4Z3y; Sun, 3 May 2020 11:36:16 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1DC00A5E0; Sun, 3 May 2020 11:36:16 +0000 (UTC) (envelope-from manu@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 043BaFjp020987; Sun, 3 May 2020 11:36:15 GMT (envelope-from manu@FreeBSD.org) Received: (from manu@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 043BaFae020986; Sun, 3 May 2020 11:36:15 GMT (envelope-from manu@FreeBSD.org) Message-Id: <202005031136.043BaFae020986@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: manu set sender to manu@FreeBSD.org using -f From: Emmanuel Vadot Date: Sun, 3 May 2020 11:36:15 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r533769 - head/devel/aarch64-none-elf-gcc X-SVN-Group: ports-head X-SVN-Commit-Author: manu X-SVN-Commit-Paths: head/devel/aarch64-none-elf-gcc X-SVN-Commit-Revision: 533769 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 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: Sun, 03 May 2020 11:36:16 -0000 Author: manu Date: Sun May 3 11:36:15 2020 New Revision: 533769 URL: https://svnweb.freebsd.org/changeset/ports/533769 Log: devel/aarch64-none-elf-gcc: Add binutils dependency Building the plugins require a native objdump, all arches have one except for aarch64 so add a dependency on devel/binutils@native in case the arch doesn't have objdump installed. Modified: head/devel/aarch64-none-elf-gcc/Makefile Modified: head/devel/aarch64-none-elf-gcc/Makefile ============================================================================== --- head/devel/aarch64-none-elf-gcc/Makefile Sun May 3 11:07:20 2020 (r533768) +++ head/devel/aarch64-none-elf-gcc/Makefile Sun May 3 11:36:15 2020 (r533769) @@ -19,7 +19,8 @@ BROKEN_mips64= configure: error: cannot compute suffi LIB_DEPENDS= libgmp.so:math/gmp \ libmpfr.so:math/mpfr \ libmpc.so:math/mpc -BUILD_DEPENDS= ${GCC_TARGET}-as:devel/binutils@${PKGNAMEPREFIX:C/-$//:C/-/_/g} +BUILD_DEPENDS= ${GCC_TARGET}-as:devel/binutils@${PKGNAMEPREFIX:C/-$//:C/-/_/g} \ + objdump:devel/binutils@native RUN_DEPENDS= ${GCC_TARGET}-as:devel/binutils@${PKGNAMEPREFIX:C/-$//:C/-/_/g} USES= gmake iconv libtool tar:xz makeinfo compiler:c++11-lang @@ -45,8 +46,6 @@ CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls - --with-sysroot="/" \ --with-as=${LOCALBASE}/bin/${GCC_TARGET}-as \ --with-ld=${LOCALBASE}/bin/${GCC_TARGET}-ld - -MAKE_ENV+= PATH=${PATH}:${LOCALBASE}/${GCC_TARGET}/bin # U-Boot requires libgcc, crossbuild and install it along with the compiler. ALL_TARGET= all-gcc all-target-libgcc