From 81f0746cacfe0fba009db39dd0bbc4887c9fb454 Mon Sep 17 00:00:00 2001 From: Vince Harron Date: Mon, 19 Jan 2015 17:31:22 +0000 Subject: [PATCH] Fixed Linux build error in gtest llvm-svn: 226471 --- lldb/gtest/unittest/Host/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lldb/gtest/unittest/Host/Makefile b/lldb/gtest/unittest/Host/Makefile index 41411e7..f541dd7 100644 --- a/lldb/gtest/unittest/Host/Makefile +++ b/lldb/gtest/unittest/Host/Makefile @@ -27,6 +27,10 @@ CXX_SOURCES := $(CXX_SOURCES) \ $(LEVEL)/../../source/Host/common/Mutex.cpp endif +ifeq ($(OS),Linux) + LD_EXTRAS := -lncurses -ldl +endif + MAKE_DSYM := NO include $(LEVEL)/Makefile.rules -- 2.7.4