We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ice2slice
--output-dir
Like all other Slice compilers, ice2slice's help dialogue includes:
"--output-dir DIR Create files in the directory DIR.\n"
and we go through the trouble of parsing this argument:
opts.addOpt("", "output-dir", IceInternal::Options::NeedArg); ... string output = opts.optArg("output-dir");
But we never actually use this variable. So passing this argument to ice2slice has no effect.
We should fix ice2slice to honor this variable like the other compilers do.
The text was updated successfully, but these errors were encountered:
Fix ice2slice to honor --output-dir - zeroc-ice#3289
654d030
pepone
Successfully merging a pull request may close this issue.
Like all other Slice compilers,
ice2slice
's help dialogue includes:and we go through the trouble of parsing this argument:
But we never actually use this variable. So passing this argument to
ice2slice
has no effect.We should fix
ice2slice
to honor this variable like the other compilers do.The text was updated successfully, but these errors were encountered: