Compilers that support C11

13,547

Solution 1

Pelles C version 7.00 (Release Candidate is available now)

http://www.smorgasbordet.com/pellesc/

Solution 2

Your best bet is probably Clang. See the release notes for the current release and the upcoming one.

Solution 3

GCC 4.9 supports generic selection . It is in general bugfixing stage before release. http://gcc.gnu.org/gcc-4.9/changes.html

Solution 4

I think Clang supports generic selection.

Share:
13,547

Related videos on Youtube

ApprenticeHacker
Author by

ApprenticeHacker

I try to make the internet faster.

Updated on June 04, 2022

Comments

  • ApprenticeHacker
    ApprenticeHacker almost 2 years

    I was wondering if there are any compilers that support a considerable amount of the new C11 standard. Looking for features like Generic Selection etc.

    Any suggestions?

    • Jens Gustedt
      Jens Gustedt about 12 years
      not a direct answer because not a compiler but P99, p99.gforge.inria.fr/p99-html/group__C11.html, is able to emulate most features of C11 quite well, best working on the intersection of gcc family of compilers (in a broad sense) and POSIX systems.
  • Peter Kankowski
    Peter Kankowski about 12 years
    @IntermediateHacker Yes, see Generic selection entry in the help file.
  • alexandrul
    alexandrul almost 12 years
    7.00 was released on Jul 08, 2012
  • ideasman42
    ideasman42 over 9 years
    maybe worth noting, ms-windows only.