aboutsummaryrefslogtreecommitdiff
path: root/tools/lldb-server/Makefile
blob: 849b313dae8a78105536641280345caf4324b005 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
##===- tools/lldb-server/Makefile ------------------------*- Makefile -*-===##
#
#                     The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##
LLDB_LEVEL := ../..

TOOLNAME = lldb-server

LLVMLibsOptions += -llldb -llldbUtility

LINK_COMPONENTS := support

include $(LLDB_LEVEL)/Makefile

ifeq ($(HOST_OS),Darwin)
	LLVMLibsOptions += -Wl,-rpath,@loader_path/../lib/
endif

ifeq ($(HOST_OS), $(filter $(HOST_OS), Linux FreeBSD GNU/kFreeBSD NetBSD))
	LLVMLibsOptions += -Wl,-rpath,$(LibDir) -lpthread
endif