[Lldb-commits] [PATCH] D77662: [lldb/test] Make TestLoadUnload compatible with windows
Adrian McCarthy via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Wed Apr 8 16:52:09 PDT 2020
amccarth added inline comments.
================
Comment at: lldb/packages/Python/lldbsuite/test/make/Makefile.rules:477
ifeq (1,$(USE_LIBDL))
- ifneq ($(OS),NetBSD)
+ ifeq (,$(filter $(OS), NetBSD Windows_NT))
LDFLAGS += -ldl
----------------
I'm no expert in makefile syntax (especially not for Unix-y versions), but this looks weird, with the leading comma and the matching parenthesis for `$(filter` sitting near the end of the expression. Is this right?
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77662/new/
https://reviews.llvm.org/D77662
More information about the lldb-commits
mailing list