jw_
jw_

Reputation: 1785

Where is the complete documentation of Clang flags?

The references I know are here:

http://clang.llvm.org/docs/ClangCommandLineReference.html http://clang.llvm.org/docs/DiagnosticsReference.html

But I can't find flags like -msse4.1, so is there a complete list of supported flags on clang.llvm.org, or do we need external documentation?

Upvotes: 4

Views: 8674

Answers (1)

level1337noob
level1337noob

Reputation: 36

Use CTRL + F to lookup on the -m target flags.

https://clang.llvm.org/docs/genindex.html

Upvotes: 2

Related Questions