From: Vince Harron Date: Mon, 19 Jan 2015 17:31:22 +0000 (+0000) Subject: Fixed Linux build error in gtest X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=81f0746cacfe0fba009db39dd0bbc4887c9fb454;p=platform%2Fupstream%2Fllvm.git Fixed Linux build error in gtest llvm-svn: 226471 --- 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