Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Recommended Clang command line options

Tags:

c

clang

c89

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)

like image 573
xyz Avatar asked Apr 12 '10 19:04

xyz


1 Answers

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

like image 175
Yktula Avatar answered Nov 19 '22 11:11

Yktula