From 7471cb3479e40d069d1c8517094b5c17eac45284 Mon Sep 17 00:00:00 2001 From: deraadt Date: Wed, 10 Feb 2021 02:53:43 +0000 Subject: [PATCH] only amd64 & arm64 lldb work at the moment --- gnu/usr.bin/clang/lldb-server/Makefile | 7 ++++++- gnu/usr.bin/clang/lldb/Makefile | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/clang/lldb-server/Makefile b/gnu/usr.bin/clang/lldb-server/Makefile index 276342f3b77..50a571dbedd 100644 --- a/gnu/usr.bin/clang/lldb-server/Makefile +++ b/gnu/usr.bin/clang/lldb-server/Makefile @@ -1,8 +1,13 @@ -# $OpenBSD: Makefile,v 1.3 2021/02/09 21:57:25 patrick Exp $ +# $OpenBSD: Makefile,v 1.4 2021/02/10 02:53:43 deraadt Exp $ .include +.if (${MACHINE} == "arm64") || (${MACHINE} == "amd64") PROG= lldb-server +.else +NOPROG= lldb-server +.endif + BINDIR= /usr/bin NOMAN= diff --git a/gnu/usr.bin/clang/lldb/Makefile b/gnu/usr.bin/clang/lldb/Makefile index 1106c84765b..07f9b6e441a 100644 --- a/gnu/usr.bin/clang/lldb/Makefile +++ b/gnu/usr.bin/clang/lldb/Makefile @@ -1,8 +1,13 @@ -# $OpenBSD: Makefile,v 1.8 2021/02/09 21:57:25 patrick Exp $ +# $OpenBSD: Makefile,v 1.9 2021/02/10 02:53:45 deraadt Exp $ .include +.if (${MACHINE} == "arm64") || (${MACHINE} == "amd64") PROG= lldb +.else +NOPROG= lldb +.endif + BINDIR= /usr/bin LIBEXECDIR=/usr/libexec -- 2.20.1