Don't rely on inferior_ptid in record_full_wait
[deliverable/binutils-gdb.git] / bfd / elf-linker-x86.h
index bd14b7114b254a2a5e905090e7579dc54075d117..8ede7299dd64f8018ba08cbced5c6ac6ae4206a3 100644 (file)
@@ -1,5 +1,5 @@
 /* x86-specific ELF linker support between ld and bfd.
-   Copyright (C) 2019 Free Software Foundation, Inc.
+   Copyright (C) 2019-2020 Free Software Foundation, Inc.
 
    This file is part of BFD, the Binary File Descriptor library.
 
    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
    MA 02110-1301, USA.  */
 
+/* Missing IBT and SHSTK property report control.  */
+enum elf_x86_cet_report
+{
+  cet_report_none      = 0,        /* Do nothing.  */
+  cet_report_warning   = 1 << 0,   /* Issue a warning.  */
+  cet_report_error     = 1 << 1,   /* Issue an error.  */
+  cet_report_ibt       = 1 << 2,   /* Report missing IBT property.  */
+  cet_report_shstk     = 1 << 3    /* Report missing SHSTK property.  */
+};
+
 /* Used to pass x86-specific linker options from ld to bfd.  */
 struct elf_linker_x86_params
 {
@@ -39,6 +49,9 @@ struct elf_linker_x86_params
   /* TRUE if generate a 1-byte NOP as suffix for x86 call instruction.  */
   unsigned int call_nop_as_suffix : 1;
 
+  /* Report missing IBT and SHSTK properties.  */
+  enum elf_x86_cet_report cet_report;
+
   /* The 1-byte NOP for x86 call instruction.  */
   char call_nop_byte;
 };
This page took 0.026596 seconds and 4 git commands to generate.