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
Currently, we use a homemade getopt in kernel/driver.cc. We have lots of single letter options so to add a feature I want a full word option lke --option=value, which we don't support currently, which is probably why we have many single letter options in the first place.
Let's move to a boring, normal solution like cxxopts (C++11) or argparse (C++17). Our current demands will be met by just about anything, so we have to think about what we want from command line argument parsing in the future to pick something
The text was updated successfully, but these errors were encountered:
Feature Description
Currently, we use a homemade
getopt
inkernel/driver.cc
. We have lots of single letter options so to add a feature I want a full word option lke--option=value
, which we don't support currently, which is probably why we have many single letter options in the first place.Let's move to a boring, normal solution like cxxopts (C++11) or argparse (C++17). Our current demands will be met by just about anything, so we have to think about what we want from command line argument parsing in the future to pick something
The text was updated successfully, but these errors were encountered: