disable a.out on aarch64

This commit is contained in:
christos 2020-03-05 15:58:33 +00:00
parent 73f812cebe
commit 8c22ab9cb1
1 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: Makefile,v 1.30 2019/11/20 19:37:54 pgoyette Exp $ # $NetBSD: Makefile,v 1.31 2020/03/05 15:58:33 christos Exp $
.include "../Makefile.inc" .include "../Makefile.inc"
.include "../Makefile.assym" .include "../Makefile.assym"
@ -43,7 +43,8 @@ SRCS+= netbsd32_time.c netbsd32_wait.c
SRCS+= netbsd32_vm.c SRCS+= netbsd32_vm.c
SRCS+= netbsd32_module.c SRCS+= netbsd32_module.c
.if ${MACHINE_CPU} != "mips" && ${MACHINE_CPU} != "powerpc" .if ${MACHINE_CPU} != "mips" && ${MACHINE_CPU} != "powerpc" && \
${MACHINE_CPU} != "aarch64"
CPPFLAGS+= -DEXEC_AOUT -DCOMPAT_NOMID CPPFLAGS+= -DEXEC_AOUT -DCOMPAT_NOMID
SRCS+= netbsd32_exec_aout.c SRCS+= netbsd32_exec_aout.c
.endif .endif