Module Name: src
Committed By: christos
Date: Sun Jul 15 16:37:04 UTC 2018
Modified Files:
src/external/gpl3/gcc/usr.bin/frontend: Makefile
Log Message:
Give aarch64 the "special treatment", since mknative does not include the
target-specific build file.
To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/external/gpl3/gcc/usr.bin/frontend/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/external/gpl3/gcc/usr.bin/frontend/Makefile
diff -u src/external/gpl3/gcc/usr.bin/frontend/Makefile:1.11 src/external/gpl3/gcc/usr.bin/frontend/Makefile:1.12
--- src/external/gpl3/gcc/usr.bin/frontend/Makefile:1.11 Wed Nov 15 02:47:40 2017
+++ src/external/gpl3/gcc/usr.bin/frontend/Makefile Sun Jul 15 12:37:04 2018
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2017/11/15 07:47:40 mrg Exp $
+# $NetBSD: Makefile,v 1.12 2018/07/15 16:37:04 christos Exp $
LIBISPRIVATE= yes
@@ -20,6 +20,10 @@ SRCS+= driver-i386.c
SRCS+= driver-rs6000.c
.PATH: ${DIST}/gcc/config/rs6000
.endif
+.if ${GCC_MACHINE_ARCH} == "aarch64"
+SRCS+= driver-aarch64.c
+.PATH: ${DIST}/gcc/config/aarch64
+.endif
.include "../Makefile.target-defines"