diff options
author | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-05-03 03:45:41 +0000 |
---|---|---|
committer | Jonathan Gray <jsg@cvs.openbsd.org> | 2021-05-03 03:45:41 +0000 |
commit | 0c911119c854bd9bc8aea9175e7ac4356aec0469 (patch) | |
tree | 74e7666c9d9b5203b1093dec9c4e7c96d00eec80 | |
parent | a43b969f450c5a6831dee004c81b8681a15b3781 (diff) |
don't build gdb on riscv64
-rw-r--r-- | gnu/usr.bin/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 41289a4fb67..d1efaba285b 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.62 2020/07/04 21:11:52 kettenis Exp $ +# $OpenBSD: Makefile,v 1.63 2021/05/03 03:45:40 jsg Exp $ # $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $ .include <bsd.own.mk> @@ -21,7 +21,8 @@ SUBDIR+= cxxfilt cvs # binutils-2.17 needs to build gdb in binutils at the moment .if make(obj) SUBDIR+= binutils -.elif ${MACHINE_CPU} != "aarch64" && ${MACHINE_CPU} != "powerpc64" +.elif ${MACHINE_CPU} != "aarch64" && ${MACHINE_CPU} != "powerpc64" && \ + ${MACHINE_CPU} != "riscv64" SUBDIR+= binutils .endif SUBDIR+= binutils-2.17 |