Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > C Programming > Comparing C11 compilers

Reply
Thread Tools

Comparing C11 compilers

 
 
Quentin Pope
Guest
Posts: n/a
 
      02-06-2012
I have been searching on Google for reviews and comparisons of available
C11 compilers, and general information on degree of compliance and likely
roll out schedules for major vendors as they update their implementations
in accordance with the new standard.

However, I've found very little information on this topic!

Which C11 compilers are people here using? Have you had any problems with
the new features? Does anyone have information on vendors' plans (esp gcc,
Intel)?

Thanks
__QP__
 
Reply With Quote
 
 
 
 
Ben Pfaff
Guest
Posts: n/a
 
      02-06-2012
Quentin Pope <> writes:

> Which C11 compilers are people here using? Have you had any problems with
> the new features? Does anyone have information on vendors' plans (esp gcc,
> Intel)?


Did you see http://gcc.gnu.org/gcc-4.7/changes.html, which lists
changes for the upcoming GCC 4.7 release:

C

There is support for some more features from the C11 revision of
the ISO C standard. GCC now accepts the options -std=c11 and
-std=gnu11, in addition to the previous -std=c1x and -std=gnu1x.

* Unicode strings (previously supported only with options such
as -std=gnu11, now supported with -std=c11), and the
predefined macros __STDC_UTF_16__ and __STDC_UTF_32__.

* Nonreturning functions (_Noreturn and <stdnoreturn.h>).

* Alignment support (_Alignas, _Alignof, max_align_t,
<stdalign.h>).

* A built-in function __builtin_complex is provided to support
C library implementation of the CMPLX family of macros.
--
Ben Pfaff
http://benpfaff.org
 
Reply With Quote
 
 
 
 
Keith Thompson
Guest
Posts: n/a
 
      02-06-2012
bartek szurgot <> writes:
> On 02/06/2012 06:48 PM, Quentin Pope wrote:

[...]
>> Which C11 compilers are people here using? Have you had any problems with
>> the new features? Does anyone have information on vendors' plans (esp gcc,
>> Intel)?

>
> i had been experimenting with 3 compilers for C++11 (sorry - they are
> still C++0x ). it looks like this:
> 1. GCC - most major features are there. many small things are missing
> though (list of features can be found on GCC's site). bugs still happen too.
> 2. Visual (Microsoft) - i'd say that less than a half of what GCC supports.
> 3. ICC (Intel's) - very limited (basic) support.


The question was about C11, not C++11.

--
Keith Thompson (The_Other_Keith) kst- <http://www.ghoti.net/~kst>
Will write code for food.
"We must do something. This is something. Therefore, we must do this."
-- Antony Jay and Jonathan Lynn, "Yes Minister"
 
Reply With Quote
 
Rui Maciel
Guest
Posts: n/a
 
      02-06-2012
Quentin Pope wrote:

> I have been searching on Google for reviews and comparisons of available
> C11 compilers, and general information on degree of compliance and likely
> roll out schedules for major vendors as they update their implementations
> in accordance with the new standard.
>
> However, I've found very little information on this topic!
>
> Which C11 compilers are people here using? Have you had any problems with
> the new features? Does anyone have information on vendors' plans (esp gcc,
> Intel)?


I am not aware of any comparisons other than the ones which are displayed in
each compiler's site.

It would be nice if there was an objective review on this issue. Maybe it
is possible to put together a C11 compliance test and then host the results
somewhere, such as a wiki from wikia.

At this moment I'm not able to do this, and I'm affraid it would take a bit
of time and work to do it right. Is anyone interested in contributing to
this?


Rui Maciel
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
commercial c compilers vs free c compilers geletine C Programming 33 07-07-2006 05:21 AM
Comparing compilers erik.dellamonica@gmail.com VHDL 4 12-06-2005 02:49 PM
Comparing Linux C and C++ Compilers: Benchmarks and Analysis Scott Robert Ladd C Programming 8 09-20-2004 02:03 PM
Comparing Linux C and C++ Compilers: Benchmarks and Analysis Scott Robert Ladd C++ 6 09-18-2004 09:12 PM
comparing compilers... Senno C++ 5 01-07-2004 11:51 AM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57