<div class="gmail_quote">On Mon, Jun 4, 2012 at 2:29 PM, david.cole <span dir="ltr"><<a href="mailto:david.cole@kitware.com" target="_blank">david.cole@kitware.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
I'm one of the CMake developers. We have an issue in our bug tracker that's<br>
related to clang's command line argument parsing:<br>
<a href="http://public.kitware.com/Bug/view.php?id=13194" target="_blank">http://public.kitware.com/Bug/view.php?id=13194</a><br>
<br>
The bug reported is using this version of clang (MacOS X 10.7.3 with Xcode<br>
4.3.2):<br>
$ /usr/bin/cc -v<br>
Apple clang version 3.1 (tags/Apple/clang-318.0.58) (based on LLVM 3.1svn)<br>
<br>
In the bug report, the CMake script code is trying to run clang to test if<br>
it recognizes a given command line argument. We expect to report that it<br>
does not support an argument if there's an error when using the argument<br>
trying to compile this snippet: "int main() { return 0;}"<br>
<br>
When given "-maltivec" it produces:<br>
clang: warning: argument unused during compilation: '-maltivec'<br>
<br>
By giving us that output, clang indicates that it does recognize the -m<br>
compiler argument, but warns us that -maltivec has not been used. (At least,<br>
that's how I read it.)<br>
<br>
So, here's the question: Can you recommend how to robustly detect whether or<br>
not clang supports a given command line argument? For both existing versions<br>
of clang in the wild, and future releases.<br>
<br>
The bug reporter in this case, wants us to recognize "argument unused during<br>
compilation" as an error, but I'm concerned that doing so will falsely<br>
report other valid command line arguments as unavailable...<br>
<br>
<br>
Thanks,<br>
David Cole<br>
Kitware, Inc.<br>
<br>
<br>
--<br>
View this message in context: <a href="http://clang-developers.42468.n3.nabble.com/Question-how-to-robustly-detect-available-command-line-arguments-tp4024269.html" target="_blank">http://clang-developers.42468.n3.nabble.com/Question-how-to-robustly-detect-available-command-line-arguments-tp4024269.html</a><br>

Sent from the Clang Developers mailing list archive at Nabble.com.<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@cs.uiuc.edu">cfe-dev@cs.uiuc.edu</a><br>
<a href="http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev" target="_blank">http://lists.cs.uiuc.edu/mailman/listinfo/cfe-dev</a><br>
</blockquote></div><div><br></div><br><div>Not a lot of response on this one, so let me re-phrase:</div><div><br></div><div><br></div><div>How can I tell what the output "clang: warning: argument unused during compilation" means?</div>
<div><br></div><div>If I get it when using "-maltivec" does it mean that ANY -m argument would be unused?</div><div><br></div><div><br></div><div>Or, what's the best way of knowing the set of valid possible values for -m?</div>
<div><br></div><div><br></div><div>Thanks,</div><div>David Cole</div><div>Kitware, Inc.</div><div><br></div>