From: deraadt Date: Wed, 10 Feb 2021 02:53:43 +0000 (+0000) Subject: only amd64 & arm64 lldb work at the moment X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=7471cb3479e40d069d1c8517094b5c17eac45284;p=openbsd only amd64 & arm64 lldb work at the moment --- 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