You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
406 B
18 lines
406 B
LEVEL = ../../test/make
|
|
|
|
CXX_SOURCES := main.cpp
|
|
EXE := lldb-lookup
|
|
USE_LIBCPP := 1
|
|
|
|
MY_OS = $(shell uname -s)
|
|
|
|
ifeq "$(MY_OS)" "Darwin"
|
|
LLDB_BUILD_DIR ?= /Applications/Xcode.app/Contents/SharedFrameworks
|
|
LD_EXTRAS ?= -framework LLDB -Wl,-rpath,"$(LLDB_BUILD_DIR)"
|
|
FRAMEWORK_INCLUDES=-F"$(LLDB_BUILD_DIR)"
|
|
else
|
|
LD_EXTRAS ?= $(LLDB_BUILD_DIR)/_lldb.so
|
|
endif
|
|
|
|
include $(LEVEL)/Makefile.rules
|