[v3,0/6] ASCIZ Command for output section

Message ID 20230213161124.15340-1-binutils@emagii.com
Headers
Series ASCIZ Command for output section |

Message

Frager, Neal via Binutils Feb. 13, 2023, 4:11 p.m. UTC
  Introduce an ASCIZ command for an output section
When generating a header for an embedded system
there is often a need to add text information.

There are arguments for generating the header in the linker
instead of compiling the header as part of the program.
The lack of support for strings makes this process a bit unwieldy.

The ASCIZ command allows you to specify a zero-terminated string as a parameter.

Example:

    ASCIZ "This is a string"

The string contains 16 characters, but a NUL character is added to the end,
so the areas reserved is 16+1 = 17 characters.

The string may contain '\n', '\r', '\t' and octals, but not hex characters.

Ideally, there should be a command which reserves a fixed size area.

I:E:

    ASCII 20, "This is a string"

but I have failed to get make this work in 'ld',
so this patch series is limited to ASCIZ.

[PATCH v3 1/6] Document the ASCIZ command
[PATCH v3 2/6] Add ASCIZ to NEWS
[PATCH v3 3/6] Add ASCIZ to testsuite
[PATCH v3 4/6] ldlex.l: Add ASCIZ token
[PATCH v3 5/6] ldgram.y: Add 'ASCIZ <string>' command
[PATCH v3 6/6] Parse ASCIZ command