summaryrefslogtreecommitdiff
path: root/lldb/packages
diff options
context:
space:
mode:
authorFelipe de Azevedo Piovezan <fpiovezan@apple.com>2022-08-24 15:30:31 -0400
committerFelipe de Azevedo Piovezan <fpiovezan@apple.com>2022-08-25 06:39:01 -0400
commit14d5ae2038b58830f0565980e20fe0bfd683fb54 (patch)
treefa40bd7783638b95a4a1f4bd2a792ce8800e70e2 /lldb/packages
parent500eef249a2ad22e57425efe9d021111bdeb2ea1 (diff)
downloadllvm-14d5ae2038b58830f0565980e20fe0bfd683fb54.tar.gz
[lldb][nfc] Remove unused makefile test variables
The variables LLDB_USING_LIBCPP and LLDB_USING_LIBSTDCPP are no longer used anywhere. Differential Revision: https://reviews.llvm.org/D132596
Diffstat (limited to 'lldb/packages')
-rw-r--r--lldb/packages/Python/lldbsuite/test/make/Makefile.rules3
1 files changed, 1 insertions, 2 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
index 6336ef2a523c..36ef02810152 100644
--- a/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
+++ b/lldb/packages/Python/lldbsuite/test/make/Makefile.rules
@@ -381,13 +381,12 @@ endif
ifeq (1,$(USE_LIBSTDCPP))
# Clang requires an extra flag: -stdlib=libstdc++
ifneq (,$(findstring clang,$(CC)))
- CXXFLAGS += -stdlib=libstdc++ -DLLDB_USING_LIBSTDCPP
+ CXXFLAGS += -stdlib=libstdc++
LDFLAGS += -stdlib=libstdc++
endif
endif
ifeq (1,$(USE_LIBCPP))
- CXXFLAGS += -DLLDB_USING_LIBCPP
ifneq ($(and $(LIBCPP_INCLUDE_DIR), $(LIBCPP_LIBRARY_DIR)),)
CXXFLAGS += -nostdlib++ -nostdinc++ -cxx-isystem $(LIBCPP_INCLUDE_DIR)
LDFLAGS += -L$(LLVM_LIBS_DIR) -Wl,-rpath,$(LIBCPP_LIBRARY_DIR) -lc++