- Tested with Eclipse, likely to work with other GDB/MI compatible GUIs. - Some but not all MI commands have been implemented. See MIReadme.txt for more info. - Written from scratch, no GPL code, based on LLDB Public API. - Built for Linux, Windows and OSX. Tested on Linux and Windows. - GDB/MI Command Reference, https://sourceware.org/gdb/onlinedocs/gdb/GDB_002fMI.html llvm-svn: 208972
33 lines
870 B
Makefile
33 lines
870 B
Makefile
##===- tools/lldb-mi/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 := ../..
|
|
|
|
TOOLNAME = lldb-mi
|
|
|
|
NO_PEDANTIC = 1
|
|
|
|
LLVMLibsOptions += -ledit -llldb -llldbUtility
|
|
|
|
include $(LLDB_LEVEL)/Makefile
|
|
|
|
ifeq ($(HOST_OS),Darwin)
|
|
LLVMLibsOptions += -Wl,-rpath,@loader_path/../lib/
|
|
LLVMLibsOptions += -Wl,-sectcreate -Wl,__TEXT -Wl,__info_plist -Wl,"$(PROJ_SRC_DIR)/lldb-Info.plist"
|
|
endif
|
|
|
|
ifneq (,$(filter $(HOST_OS), Linux GNU/kFreeBSD))
|
|
LLVMLibsOptions += -Wl,-rpath,$(LibDir)
|
|
endif
|
|
|
|
ifeq ($(HOST_OS),FreeBSD)
|
|
CPP.Flags += -I/usr/include/edit #-v
|
|
LLVMLibsOptions += -Wl,-rpath,$(LibDir)
|
|
endif
|
|
|