Files
clang-p2996/lldb/test/API/functionalities/archives/Makefile
Kaining Zhong dc46ae6df5 [lldb] Add support to load object files from thin archives
This fixes https://github.com/llvm/llvm-project/issues/50114 where lldb/mac
can't load object files from thin archives.  This patch allows lldb to identify
thin archives, and load object files contained in them.

Differential Revision: https://reviews.llvm.org/D126464
2022-07-05 10:52:26 +02:00

22 lines
460 B
Makefile

C_SOURCES := main.c a.c b.c c.c
EXE := # Define a.out explicitly
MAKE_DSYM := NO
all: a.out libbar.a
a.out: main.o libfoo.a
$(LD) $(LDFLAGS) $^ -o $@
libfoo.a: a.o b.o
$(AR) $(ARFLAGS) $@ $^
$(RM) $^
# This tests whether lldb can load a thin archive
libbar.a: c.o
$(eval LLVM_AR := $(LLVM_TOOLS_DIR)/llvm-ar)
$(eval LLVM_ARFLAGS := -rcsDT)
$(LLVM_AR) $(LLVM_ARFLAGS) $@ $^
# Note for thin archive case, we cannot remove c.o
include Makefile.rules