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
31 lines
692 B
Makefile
31 lines
692 B
Makefile
##===- source/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 := ..
|
|
include $(LLDB_LEVEL)/../../Makefile.config
|
|
|
|
DIRS :=
|
|
|
|
# enable lldb-gdbserver for supported platforms
|
|
ifneq (,$(strip $(filter $(HOST_OS), FreeBSD Linux)))
|
|
DIRS += lldb-gdbserver
|
|
endif
|
|
|
|
ifneq ($(HOST_OS),MingW)
|
|
DIRS += lldb-platform
|
|
endif
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
DIRS += debugserver
|
|
endif
|
|
|
|
DIRS += driver
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|