summaryrefslogtreecommitdiff
path: root/external/gpl3/binutils/dist/elfcpp/elfcpp.h
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2018-11-06 21:18:32 +0000
committerchristos <christos@NetBSD.org>2018-11-06 21:18:32 +0000
commitfa2c2dd3c1ec7c940c618cf41d31e4ef9383123b (patch)
tree99bf515f88a1372fc0977610ab17081b074d8f4f /external/gpl3/binutils/dist/elfcpp/elfcpp.h
parentfe616841f58eb93e31d44a53951d8fb10bc5c583 (diff)
2018-07-18 Nick Clifton <nickc@redhat.com>
2.31.1 Release point. 2018-07-18 Nick Clifton <nickc@redhat.com> * (DEVO_SUPPORT): Fix typo in previous delta. (do_proto_toplev): Add --quiet option to configure command line. 2018-07-16 Nick Clifton <nickc@redhat.com> * src-release.sh (DEVO_SUPPORT): Add test-driver and ar-lib. 2018-07-06 Sebastian Huber <sebastian.huber@embedded-brains.de> * config.sub: Sync with upstream version 2018-07-03. 2018-07-05 Sebastian Huber <sebastian.huber@embedded-brains.de> * config.guess: Sync with upstream version 2018-06-26. * config.sub: Sync with upstream version 2018-07-02. 2018-06-24 Nick Clifton <nickc@redhat.com> * configure: Regenerate. 2018-06-19 Simon Marchi <simon.marchi@ericsson.com> * libtool.m4: Use AC_LANG_SOURCE. * configure.ac: Remove AC_PREREQ, use AC_LANG_SOURCE. * README-maintainer-mode: Update version requirements. * ar-lib: New file. * test-driver: New file. * configure: Re-generate. 2018-06-18 Eric Botcazou <ebotcazou@adacore.com> * Makefile.def (fortran): Add check-target-libgomp-fortran. * Makefile.tpl (check-target-libgomp-fortran): New phony target. * Makefile.in: Regenerate. * configure: Regenerate. 2018-06-18 Simon Marchi <simon.marchi@ericsson.com> * configure.ac: Sync with GCC, remove MPX-related things. 2018-05-01 Nick Clifton <nickc@redhat.com> * config.guess: Synchronize with config project master sources. * config.sub: Likewise. 2018-05-01 Francois H. Theron <francois.theron@netronome.com> * configure.ac: Added "nfp" target. * configure: Regenerate. 2018-02-13 Maciej W. Rozycki <macro@mips.com> * configure.ac <wasm32-*-*> (noconfigdirs): Add `ld'. * configure: Regenerate. 2018-01-30 Nick Clifton <nickc@redhat.com> * src-release.sh (do_proto_toplev): Add patterns for more junk files to delete before creating the tarball. 2018-01-29 Nick Clifton <nickc@redhat.com> * src-release.sh (do_proto_toplev): Strip patch remnant files from the sources before creating the tarball. 2018-01-13 Nick Clifton <nickc@redhat.com> * src-release.sh: Update copyright notice. Change reference to devo to be a reference to root.
Diffstat (limited to 'external/gpl3/binutils/dist/elfcpp/elfcpp.h')
-rw-r--r--external/gpl3/binutils/dist/elfcpp/elfcpp.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/external/gpl3/binutils/dist/elfcpp/elfcpp.h b/external/gpl3/binutils/dist/elfcpp/elfcpp.h
index 018e0f50da1..ea2e8eab134 100644
--- a/external/gpl3/binutils/dist/elfcpp/elfcpp.h
+++ b/external/gpl3/binutils/dist/elfcpp/elfcpp.h
@@ -984,7 +984,9 @@ enum
NT_GNU_BUILD_ID = 3,
// The version of gold used to link. Th descriptor is just a
// string.
- NT_GNU_GOLD_VERSION = 4
+ NT_GNU_GOLD_VERSION = 4,
+ // Program property note, as described in "Linux Extensions to the gABI".
+ NT_GNU_PROPERTY_TYPE_0 = 5
};
// The OS values which may appear in word 0 of a NT_GNU_ABI_TAG note.
@@ -999,6 +1001,21 @@ enum
ELF_NOTE_OS_SYLLABLE = 5
};
+// Program property types for NT_GNU_PROPERTY_TYPE_0.
+
+enum
+{
+ GNU_PROPERTY_STACK_SIZE = 1,
+ GNU_PROPERTY_NO_COPY_ON_PROTECTED = 2,
+ GNU_PROPERTY_LOPROC = 0xc0000000,
+ GNU_PROPERTY_X86_ISA_1_USED = 0xc0000000,
+ GNU_PROPERTY_X86_ISA_1_NEEDED = 0xc0000001,
+ GNU_PROPERTY_X86_FEATURE_1_AND = 0xc0000002,
+ GNU_PROPERTY_HIPROC = 0xdfffffff,
+ GNU_PROPERTY_LOUSER = 0xe0000000,
+ GNU_PROPERTY_HIUSER = 0xffffffff
+};
+
} // End namespace elfcpp.
// Include internal details after defining the types.