Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 29 Apr 2020 17:17:52 +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: r533381 - head/devel/aarch64-none-elf-gcc
Message-ID:  <202004291717.03THHq9l054341@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: manu
Date: Wed Apr 29 17:17:52 2020
New Revision: 533381
URL: https://svnweb.freebsd.org/changeset/ports/533381

Log:
  devel/aarch64-none-elf-gcc: Fix building plugins
  
  For building plugins gcc needs objdump, whcih exists in amd64 world but
  not on aarch64. We already have a dependancy on devel/binutils but this
  port install binaries in ${LOCALBASE}/${GCC_TARGET}/bin so add that to
  the PATH.
  
  Reported by:	Mark Millard

Modified:
  head/devel/aarch64-none-elf-gcc/Makefile

Modified: head/devel/aarch64-none-elf-gcc/Makefile
==============================================================================
--- head/devel/aarch64-none-elf-gcc/Makefile	Wed Apr 29 16:07:00 2020	(r533380)
+++ head/devel/aarch64-none-elf-gcc/Makefile	Wed Apr 29 17:17:52 2020	(r533381)
@@ -46,6 +46,8 @@ CONFIGURE_ARGS+=--target=${GCC_TARGET} --disable-nls -
 		--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
 INSTALL_TARGET=	install-gcc install-target-libgcc



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202004291717.03THHq9l054341>