This is probably a stupid question, but I've been wondering about this for a while. Does C (or any other low-level language, for that matter) even have source, or is the compiler the part that "does all the work", including parsing? If so, couldn't different compilers have different C dialects? Where does the stdlib factor into this? I would really like to know how this works.
feedback
|
|
The C language is not a piece of software but a defined standard, so one wouldn't say that it's open-source, but rather that it's an open standard. There are a gazillion different compilers for C however, and many of those are indeed open-source. The most notable example is GCC's C compiler, which is all under the GNU General Public License (GPL), an open-source license. There are more options. Watcom is open-source, for instance. There is no shortage of open-source C compilers, but without a doubt the most widespread one, at least in the non-Windows world, is GCC. For Windows, your best bet is probably Watcom or GCC by using Cygwin or MinGW. | |||||||||||||||||||||
feedback
|
|
C is a standard which specifies how C compilers should generate programs. Some C compilers, such as GCC, are open source. | |||||
feedback
|
|
C is just a language, and a standardised one at that, too. It pretty much is the compiler that "does all the work". Different compilers did have different dialects; before the the C99 ANSI standard, you had things like Borland C and other competing compilers, that implemented the C language in their own fantastic ways.
| |||
|
feedback
|
|
To add on to the other great answers: Regarding different dialects -- there are some additional features added to C that are compiler specific. You can provide the command line flag Each compiler tends to implement a few different extras, for example, The stdlib is a set of functions specified in the C standard. Much like compilers, stdlib can have different implementations. The GNU implementation is open source, as is gcc, but there are other compilers and could be other implementations of stdlib that are closed source. | |||
|
feedback
|
|
GCC's C compiler is written in C. So we know there are at least one C compiler written in C. GNU's | |||||||||
feedback
|
|
The Compiler would determine all the mappings from C to Assembly etc... but as far as someone owning it.....noone really owns C however the ANSI/ISO determines the standards | |||
|
feedback
|
|
A really good question. There is a way to define a language standard (not the implementation!) in a form of a "source code", in a strict and unambigous language. Unfortunately, all of the old languages, including C, are poorly defined. But it is still possible to translate that definitions into a source code form. Another approach is to define a language via its operational semantics, often in a form of a simple (and unefficient) reference implementation. | |||
|
feedback
|
|
Helgi Hrafn Gunnarsson has written the main answer but I thought it would be worth noting that you can effectively end up with dialects too. The compilers should do the same thing with regards to whichever standard they support (which these days should be pretty much all the same version) but there are grey areas. The way in which the compilers work for 'undefined' functionality for example. If the C specification says that the behaviour is undefined for a specific case then the compiler can do pretty much what it wants. There are also examples of functions added to the libraries (and new libraries added) by the compiler makers to support specific platform traits, create a competitive advantage or simply to make life easier. The cynical might suggest that some of these are added to help lock people into a specific compiler too. | |||
|
feedback
|
|
http://en.wikibooks.org/wiki/GNU_C_Compiler_Internals Is this what you're looking for? The source for the C compiler? Or this? The history of the GCC version of the C compiler? | |||
|
feedback
|