Kokizzu
Kokizzu

Reputation: 26818

C11 compiler conformance comparison

Was there any site that compares the current C11 standard conformance/support between implementation/compilers? (gcc, clang, intel, open64, pelles)

Upvotes: 7

Views: 1801

Answers (1)

SheetJS
SheetJS

Reputation: 22905

To my knowledge there is no general site (this is a good time to start one :). However, most projects maintain their own list:

http://clang.llvm.org/cxx_status.html (clang) http://clang.llvm.org/compatibility.html#c

http://gcc.gnu.org/wiki/C11Status (gcc)

Upvotes: 3

Related Questions