-
-
Notifications
You must be signed in to change notification settings - Fork 15
Improve cli argument parsing #31
Copy link
Copy link
Open
Labels
difficulty: mediumSomewhat difficult to solveSomewhat difficult to solvepriority: lowstatus: needs designThis feature needs design work to move forwardThis feature needs design work to move forwardtype: enhancementNew feature or requestNew feature or request
Metadata
Metadata
Assignees
Labels
difficulty: mediumSomewhat difficult to solveSomewhat difficult to solvepriority: lowstatus: needs designThis feature needs design work to move forwardThis feature needs design work to move forwardtype: enhancementNew feature or requestNew feature or request
Currently we have various limitations of how to specify cli arguments. An out-of-the-box solution like
clap¹ would be helpful.One limitation example is that it's only possible to pass the linker script as
-Tmemory.x, but not as-T memory.x.¹ -
clapin particular isn't currently easily implementable (see #29 for one approach), but would be with one of clap-rs/clap#1880, clap-rs/clap#1404.