xref: /llvm-project/lldb/test/API/debuginfod/SplitDWARF/Makefile (revision e77ac42bccb8c26bbf4b74d8e92eb09e7fa1b218)
1C_SOURCES := main.c
2
3# For split-dwarf Debuginfod tests, we need:
4
5# * A .DWP file (a.out.dwp)
6#   Produced by Makefile.rules with MAKE_DWP set to YES
7
8# * The "full" binary (missing things that live in .dwo's) (a.out.unstripped)
9#   Produced by Makefile.rules with SAVE_FULL_DEBUG_BINARY set to YES and
10#   SPLIT_DEBUG_SYMBOLS set to YES
11
12# * The stripped binary (a.out)
13#   Produced by Makefile.rules
14
15# * The 'only-keep-debug' binary (a.out.debug)
16#   Produced below
17
18MAKE_DWP := YES
19SPLIT_DEBUG_SYMBOLS := YES
20SAVE_FULL_DEBUG_BINARY := YES
21GEN_GNU_BUILD_ID := YES
22
23include Makefile.rules
24