Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/modules PR port-ia64/51261



details:   https://anonhg.NetBSD.org/src/rev/482cb857f2eb
branches:  trunk
changeset: 346889:482cb857f2eb
user:      scole <scole%NetBSD.org@localhost>
date:      Fri Aug 05 17:12:13 2016 +0000

description:
PR port-ia64/51261

Use exec_elf64 modules for ia64

diffstat:

 sys/modules/Makefile |  7 +++++--
 1 files changed, 5 insertions(+), 2 deletions(-)

diffs (26 lines):

diff -r 7c17e5692caf -r 482cb857f2eb sys/modules/Makefile
--- a/sys/modules/Makefile      Fri Aug 05 17:10:48 2016 +0000
+++ b/sys/modules/Makefile      Fri Aug 05 17:12:13 2016 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.168 2016/08/04 23:53:47 pgoyette Exp $
+#      $NetBSD: Makefile,v 1.169 2016/08/05 17:12:13 scole Exp $
 
 .include <bsd.own.mk>
 
@@ -133,12 +133,15 @@
 SUBDIR+=       exec_aout
 .endif
 
-.if ${MACHINE_ARCH} != "alpha" && ${MACHINE_CPU} != "aarch64"
+.if ${MACHINE_ARCH} != "alpha" && \
+    ${MACHINE_CPU} != "aarch64" && \
+    ${MACHINE_ARCH} != "ia64"
 SUBDIR+=       exec_elf32
 .endif
 
 .if ${MACHINE_CPU} == "aarch64" || \
     ${MACHINE_ARCH} == "alpha" || \
+    ${MACHINE_ARCH} == "ia64" || \
     ${MACHINE_ARCH} == "sparc64" || \
     ${MACHINE_ARCH} == "x86_64"
 SUBDIR+=       exec_elf64



Home | Main Index | Thread Index | Old Index