Date: Sun, 3 May 2020 11:36:15 +0000 (UTC) From: Emmanuel Vadot <manu@FreeBSD.org> 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 Message-ID: <202005031136.043BaFae020986@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202005031136.043BaFae020986>