We briefly referred to being able to specify --target=binary without explaining what binary input/output meant. This change adds a section on this.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
LGTM
docs/CommandGuide/llvm-objcopy.rst | ||
---|---|---|
466 ↗ | (On Diff #208162) | This is super nit, and I'm not sure if either way is correct. But it seems like known option arguments use one back tick and then the user specified flags like <filename> use two. See --add-symbol on line 170 and --compress-debug-sections on line 221. If we follow those then 'binary' should only be with single back ticks. Of course line 460 uses the double back ticks though. I don't think it makes a huge difference either way just thought I would bring this up. |
docs/CommandGuide/llvm-objcopy.rst | ||
---|---|---|
466 ↗ | (On Diff #208162) | The difference is in rendering. Double back-tick makes it monospace, whilst single back-tick makes it italicised (and possibly monospace, though it's harder to tell). Looking back at what I did previously, it looks like I used single back ticks for valid values everywhere, so it probably makes sense to update here and line 460 before committing. Thanks! |