You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
The trouble is that, after a - multi-character arguments are treated as a series of single character options. E.g. -abc is the equivalent of passing -a -b -c.
So -j8 would be interpreted as -j -8.
If you didn't want that behaviour we could, perhaps, include an option (a #define) to disable it - in favour of your behaviour. But that would complicate things. And at the moment we have more pressing changes to make.
Dear Clara authors,
First thanks for this lightweight cmdline parsing library. It's much appreciated after years of program_options. 😉
I'm using Clara and I noticed that most of the time I mistype the command line argument without space between the value and the option.
Is there an easy way or could you give some hints to make a patch, so that
-j 8
but also-j8
could be parsed as 8 for a case like this :Or is it something you don't want at all in Clara ?
Warm regards,
The text was updated successfully, but these errors were encountered: