mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 07:44:48 -05:00
This connects LLDB to the build, but it is disabled by default. Add WITH_LLDB= to src.conf to build it. Note that LLDB requires a C++11 compiler so is disabled on platforms using GCC. Approved by: re (gjb) Sponsored by: DARPA, AFRL
8 lines
212 B
Makefile
8 lines
212 B
Makefile
# $FreeBSD$
|
|
|
|
LLDB_SRCS= ${.CURDIR}/../../../contrib/llvm/tools/lldb
|
|
|
|
CFLAGS+=-I${LLDB_SRCS}/include -I${LLDB_SRCS}/source
|
|
CXXFLAGS+=-std=c++11 -DLLDB_DISABLE_PYTHON
|
|
|
|
.include "clang.lib.mk"
|