mirror of
https://github.com/netwide-assembler/nasm.git
synced 2025-03-31 18:20:22 +08:00
outelf: claim %pragma elf as our namespace
We don't have any elf pragmas yet, but we want to be able to do "%pragma elf" and have it work for any of the elf formats. Signed-off-by: H. Peter Anvin <hpa@zytor.com>
This commit is contained in:
parent
6e4ceb7ba1
commit
e74fd4b7b8
@ -2214,6 +2214,14 @@ static int elf_set_info(enum geninfo type, char **val)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Claim "elf" as a pragma namespace, for the future */
|
||||
static const struct pragma_facility elf_pragma_list[] =
|
||||
{
|
||||
{ "elf", NULL },
|
||||
{ NULL, NULL } /* Implements the canonical output name */
|
||||
};
|
||||
|
||||
|
||||
static const struct dfmt elf32_df_dwarf = {
|
||||
"ELF32 (i386) dwarf debug format for Linux/Unix",
|
||||
"dwarf",
|
||||
@ -2262,7 +2270,7 @@ const struct ofmt of_elf32 = {
|
||||
elf_directive,
|
||||
elf_filename,
|
||||
elf_cleanup,
|
||||
NULL /* pragma list */
|
||||
elf_pragma_list,
|
||||
};
|
||||
|
||||
static const struct dfmt elf64_df_dwarf = {
|
||||
@ -2313,7 +2321,7 @@ const struct ofmt of_elf64 = {
|
||||
elf_directive,
|
||||
elf_filename,
|
||||
elf_cleanup,
|
||||
NULL /* pragma list */
|
||||
elf_pragma_list,
|
||||
};
|
||||
|
||||
static const struct dfmt elfx32_df_dwarf = {
|
||||
@ -2339,7 +2347,7 @@ static const struct dfmt elfx32_df_stabs = {
|
||||
debug_typevalue,
|
||||
stabs_output,
|
||||
stabs_cleanup,
|
||||
NULL /* pragma list */
|
||||
elf_pragma_list,
|
||||
};
|
||||
|
||||
static const struct dfmt * const elfx32_debugs_arr[3] =
|
||||
|
Loading…
x
Reference in New Issue
Block a user