diff options
author | Luca Boccassi <luca.boccassi@microsoft.com> | 2021-07-21 14:32:03 +0100 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2021-07-21 14:36:02 +0100 |
commit | 6b86da53d5ee2022b9065f445d23356190380746 (patch) | |
tree | 30672413b66483f04b1d54399cae642ae651eccc /ld/ld.texi | |
parent | 8f5d31b8d1f80fd9fff4cef4acc4491a0d83fbed (diff) | |
download | gdb-6b86da53d5ee2022b9065f445d23356190380746.zip gdb-6b86da53d5ee2022b9065f445d23356190380746.tar.gz gdb-6b86da53d5ee2022b9065f445d23356190380746.tar.bz2 |
Allows linker scripts to set the SEC_READONLY flag.
* ld.texi: Document new output section type.
* ldgram.y: Add new token.
* ldlang.c: Handle the new flag.
* ldlang.h: Add readonly_section to list of section types.
* ldlex.l: Add a new identifier.
* testsuite/ld-scripts/output-section-types.t: New example linker script.
* testsuite/ld-scripts/output-section-types.d: Test driver.
* testsyute/ld-scripts/script.exp: Run the new test.
Diffstat (limited to 'ld/ld.texi')
-rw-r--r-- | ld/ld.texi | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -5474,6 +5474,8 @@ parentheses. The following types are defined: @item NOLOAD The section should be marked as not loadable, so that it will not be loaded into memory when the program is run. +@item READONLY +The section should be marked as read-only. @item DSECT @itemx COPY @itemx INFO |