From 4115d83eb537ffbd81e2fd8d12790a8fad769199 Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Sun, 22 Dec 2024 23:33:33 +0100 Subject: nasm: Allow file paths for the configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This opens up the door for developers to pass their own configuration files. Signed-off-by: Miquel Sabaté Solà --- crates/nasm/src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'crates') diff --git a/crates/nasm/src/main.rs b/crates/nasm/src/main.rs index c93dda0..ff8bcae 100644 --- a/crates/nasm/src/main.rs +++ b/crates/nasm/src/main.rs @@ -14,7 +14,10 @@ struct Args { /// when this argument is not given. file: Option, - /// Linker configuration to be used. Defaults to 'nrom'. + /// Linker configuration to be used. This configuration can be an identifier + /// for the configurations already baked in into this application, or it can + /// be a file path to a configuration of your choosing. See the + /// documentation for more information on this format. Defaults to 'nrom'. #[arg(short = 'c', long)] config: Option, -- cgit v1.2.3