forked from OSchip/llvm-project
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:
parent
134b2af618
commit
71afe0b1d5
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue