Author: tfiala
Date: Tue Apr 29 11:57:45 2014
New Revision: 207556

URL: http://llvm.org/viewvc/llvm-project?rev=207556&view=rev
Log:
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

Modified:
    lldb/trunk/tools/Makefile

Modified: lldb/trunk/tools/Makefile
URL: 
http://llvm.org/viewvc/llvm-project/lldb/trunk/tools/Makefile?rev=207556&r1=207555&r2=207556&view=diff
==============================================================================
--- lldb/trunk/tools/Makefile (original)
+++ lldb/trunk/tools/Makefile Tue Apr 29 11:57:45 2014
@@ -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)


_______________________________________________
lldb-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/lldb-commits

Reply via email to