diff options
Diffstat (limited to 'ld/emultempl/elf32.em')
-rw-r--r-- | ld/emultempl/elf32.em | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/emultempl/elf32.em b/ld/emultempl/elf32.em index d9d3393..f3ec875 100644 --- a/ld/emultempl/elf32.em +++ b/ld/emultempl/elf32.em @@ -2421,6 +2421,10 @@ fragment <<EOF link_info.relro = TRUE; else if (strcmp (optarg, "norelro") == 0) link_info.relro = FALSE; + else if (strcmp (optarg, "common") == 0) + link_info.elf_stt_common = elf_stt_common; + else if (strcmp (optarg, "nocommon") == 0) + link_info.elf_stt_common = no_elf_stt_common; else if (strcmp (optarg, "text") == 0) link_info.error_textrel = TRUE; else if (strcmp (optarg, "notext") == 0) |