svn commit: r280769 - head/usr.sbin/crunch/crunchide

Ed Maste emaste at FreeBSD.org
Fri Mar 27 19:34:25 UTC 2015


Author: emaste
Date: Fri Mar 27 19:34:24 2015
New Revision: 280769
URL: https://svnweb.freebsd.org/changeset/base/280769

Log:
  crunchide: arm64 support
  
  Submitted by:	andrew@
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/usr.sbin/crunch/crunchide/Makefile

Modified: head/usr.sbin/crunch/crunchide/Makefile
==============================================================================
--- head/usr.sbin/crunch/crunchide/Makefile	Fri Mar 27 19:08:11 2015	(r280768)
+++ head/usr.sbin/crunch/crunchide/Makefile	Fri Mar 27 19:34:24 2015	(r280769)
@@ -10,7 +10,8 @@ CFLAGS+=-DNLIST_AOUT
 SRCS+=	exec_aout.c
 .endif
 
-.if ${TARGET_ARCH} == amd64 || ${TARGET_ARCH} == powerpc64 || \
+.if ${TARGET_ARCH} == aarch64 || ${TARGET_ARCH} == amd64 || \
+    ${TARGET_ARCH} == powerpc64 || \
     ${TARGET_ARCH} == sparc64 || ${TARGET_ARCH:Mmips64*}
 CFLAGS+=-DNLIST_ELF64
 SRCS+=	exec_elf64.c


More information about the svn-src-head mailing list