The Manual for Clang seems to be work in progress, so could you help me formulate the definitive command line options for compiling ANSI-C (AKA C89, C90) with maximum strictness and relevant/helpful warnings?

Clang is a compiler front end for the C, C++, and Objective-C programming languages. It uses the Low Level Virtual Machine (LLVM) as its back end. It is still under development. Its goal is to offer a replacement to the GNU Compiler Collection (GCC)

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Clang's command-line arguments are, for the most part, GCC-compatible, so -std=c90 -pedantic should suffice.

link|improve this answer
2  
I was told in the LLVM irc channel that there is no currently no complete listing for clang options so the general solution is in fact "man gcc"! – f100 Apr 19 '10 at 1:45
You could even have an alias for gcc as clang. Compile times should speed up quite a bit, and switching compilers shouldn't be a problem for most projects. – Yktula Apr 19 '10 at 2:13
3  
don't forget -Wall -Wextra – Good Person May 24 '10 at 12:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.