From e3e8411bec4ef30d331d6185bd2650a3fc56ea09 Mon Sep 17 00:00:00 2001 From: Nick Alcock Date: Fri, 5 Jun 2020 22:52:41 +0100 Subject: libctf, link: add CTF_LINK_OMIT_VARIABLES_SECTION This flag (not used anywhere yet) causes the variables section to be omitted from the output CTF dict. include/ * ctf-api.h (CTF_LINK_OMIT_VARIABLES_SECTION): New. libctf/ * ctf-link.c (ctf_link_one_input_archive_member): Check CTF_LINK_OMIT_VARIABLES_SECTION. --- include/ctf-api.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'include/ctf-api.h') diff --git a/include/ctf-api.h b/include/ctf-api.h index c3683db..f034f98 100644 --- a/include/ctf-api.h +++ b/include/ctf-api.h @@ -90,6 +90,9 @@ typedef struct ctf_link_sym emitted into them. */ #define CTF_LINK_EMPTY_CU_MAPPINGS 0x4 +/* Omit the content of the variables section. */ +#define CTF_LINK_OMIT_VARIABLES_SECTION 0x8 + /* Symbolic names for CTF sections. */ typedef enum ctf_sect_names -- cgit v1.1