only amd64 & arm64 lldb work at the moment
authorderaadt <deraadt@openbsd.org>
Wed, 10 Feb 2021 02:53:43 +0000 (02:53 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 10 Feb 2021 02:53:43 +0000 (02:53 +0000)
gnu/usr.bin/clang/lldb-server/Makefile
gnu/usr.bin/clang/lldb/Makefile

index 276342f..50a571d 100644 (file)
@@ -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 <bsd.own.mk>
 
+.if (${MACHINE} == "arm64") || (${MACHINE} == "amd64")
 PROG=  lldb-server
+.else
+NOPROG=        lldb-server
+.endif
+
 BINDIR=        /usr/bin
 NOMAN=
 
index 1106c84..07f9b6e 100644 (file)
@@ -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 <bsd.own.mk>
 
+.if (${MACHINE} == "arm64") || (${MACHINE} == "amd64")
 PROG=  lldb
+.else
+NOPROG=        lldb
+.endif
+
 BINDIR=        /usr/bin
 LIBEXECDIR=/usr/libexec