Make lldb-gdbserver configure/(g)make build parity with cmake.

This now builds lldb-gdbserver on all Linux and FreeBSD architectures
rather than being locked to x86_64 architectures only.

Please note lldb-gdbserver is not yet functional, this just enables
the non-x86_64 Linux/FreeBSD build using the configure/make build
system.

 --This line, and
those below, will be ignored--

M    tools/Makefile

llvm-svn: 207556
This commit is contained in:
Todd Fiala 2014-04-29 16:57:45 +00:00
parent 134b2af618
commit 71afe0b1d5
1 changed files with 2 additions and 5 deletions

View File

@ -10,14 +10,11 @@
LLDB_LEVEL := ..
include $(LLDB_LEVEL)/../../Makefile.config
# enable lldb-gdbserver for supported platforms
DIRS :=
# enable lldb-gdbserver for supported platforms
ifneq (,$(strip $(filter $(HOST_OS), FreeBSD Linux)))
ifneq (,$(strip $(filter $(HOST_ARCH), x86_64)))
DIRS += lldb-gdbserver
else
endif
else
endif
ifneq ($(HOST_OS),MingW)