[Lldb-commits] [PATCH] D13715: Add initial gmake glue for the NetBSD platform
Bruce Mitchener via lldb-commits
lldb-commits at lists.llvm.org
Tue Oct 20 18:58:18 PDT 2015
brucem added a subscriber: brucem.
brucem requested changes to this revision.
brucem added a reviewer: brucem.
This revision now requires changes to proceed.
================
Comment at: lib/Makefile:146
@@ -144,1 +145,3 @@
+ifneq ($(HOST_OS),NetBSD)
+ USEDLIBS += lldbPluginProcessPOSIX.a
----------------
This should be `ifeq`?
================
Comment at: source/Host/Makefile:46
@@ -45,1 +45,3 @@
+ifneq ($(HOST_OS),NetBSD)
+$(eval $(call DIR_SOURCES,posix))
----------------
This should be `ifeq` too, no?
Repository:
rL LLVM
http://reviews.llvm.org/D13715
More information about the lldb-commits
mailing list