I am doing some maintenance on a program that accepts command line options. There are a single letter options, as well as long options. Currently, the long options have a single preceding hyphen.
Many tools have double hyphens for their long options. Trying to be consistent with what's out there, I looked at some of the GNU tools, and saw that for the long form, there is a mix of single- and double-hyphens. For example, the GCC compiler has --help, --version versus -std, -funroll-loops.
So I searched for some documentation on the matter and found this GNU document. There, GNU's style recommendation for long options is to begin with two hyphens.
Now, I wonder why GNU tools don't follow these GNU recommendations? I assume that it is a matter of backward compatibility, but is there more to that?
In programs that I write, when changing the options syntax I usually leave the older form functional but undocumented, or at least give a deprecation warning. Is it not possible to do so for the GCC (and other) program(s)?
--march=i386and remove-marchfrom the documentation only. – ysap Dec 16 '12 at 8:33