diff options
| author | Todd Fiala <todd.fiala@gmail.com> | 2014-04-29 16:57:45 +0000 |
|---|---|---|
| committer | Todd Fiala <todd.fiala@gmail.com> | 2014-04-29 16:57:45 +0000 |
| commit | 71afe0b1d54ce90a16e990e8ee31392382edd738 (patch) | |
| tree | 019ae6f22713189f02ebf13556fa7db5ebf90228 | |
| parent | 134b2af618afcad1a7e513284fb90bb3fa8cc78a (diff) | |
| download | bcm5719-llvm-71afe0b1d54ce90a16e990e8ee31392382edd738.tar.gz bcm5719-llvm-71afe0b1d54ce90a16e990e8ee31392382edd738.zip | |
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
| -rw-r--r-- | lldb/tools/Makefile | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/lldb/tools/Makefile b/lldb/tools/Makefile index 7c5d310ad2c..7e04c9e3d30 100644 --- a/lldb/tools/Makefile +++ b/lldb/tools/Makefile @@ -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) |

