svn commit: r533381 - head/devel/aarch64-none-elf-gcc

Emmanuel Vadot manu at FreeBSD.org
Wed Apr 29 17:17:53 UTC 2020


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


More information about the svn-ports-all mailing list