Re: where to get the iso c90 compiler?

2006-12-29 Thread Giorgos Keramidas
On 2006-12-28 20:35, [EMAIL PROTECTED] wrote: Giorgos Keramidas wrote: Does the lang/gcc41 port work for you? I don't know I don't care. Ok, then. I want to learn more about compilation processes, get to know UNIX-like systems more, and whatever. That's ok too. You are bound for a very

Re: where to get the iso c90 compiler?

2006-12-28 Thread Giorgos Keramidas
On 2006-12-27 23:20, [EMAIL PROTECTED] wrote: I want to compile the GCC 4.1.1 compiler. Does the lang/gcc41 port work for you? ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe,

Re: where to get the iso c90 compiler?

2006-12-28 Thread deeptech71
Giorgos Keramidas wrote: Does the lang/gcc41 port work for you? I don't know I don't care. I want to learn more about compilation processes, get to know UNIX-like systems more, and whatever. So I've downloaded the source for gcc, and the README says that I need the ISO C90 compiler. Where

Re: where to get the iso c90 compiler?

2006-12-28 Thread Gabor Kovesdan
the ISO C90 compiler. Where do I get that? OK it looks like I can compile gcc 4.1 with an older gcc, but that's not my choice. [ But if that's the case, how was the first gcc compiled? xD ] [ How was the first ever compiler compiled? xD ] C90 is not a specific compiler, it's

Re: where to get the iso c90 compiler?

2006-12-28 Thread Erik Trulsson
for gcc, and the README says that I need the ISO C90 compiler. Where do I get that? OK it looks like I can compile gcc 4.1 with an older gcc, but that's not my choice. There is no such thing as *the* ISO C90 compiler, but, the gcc README almost certainly says that you need *a* ISO C90 compiler

Re: where to get the iso c90 compiler?

2006-12-28 Thread deeptech71
[Fistly, people wrote code in pure binary language. Then assembly were invented and later they wrote higher level languages in assembly.] With whatever C compiler the gcc developer had at that time. It probably wasn't. The first ever compiler was most likely written in assembler. Later on

Re: where to get the iso c90 compiler?

2006-12-28 Thread deeptech71
Gabor Kovesdan wrote: C90 is not a specific compiler, it's a standard, see: http://en.wikipedia.org/wiki/C90 AH OK THX. Back to a pre-compiled gcc. ___ freebsd-questions@freebsd.org mailing list

Re: where to get the iso c90 compiler?

2006-12-28 Thread Duane Hill
[EMAIL PROTECTED] wrote: [Fistly, people wrote code in pure binary language. Then assembly were invented and later they wrote higher level languages in assembly.] With whatever C compiler the gcc developer had at that time. It probably wasn't. The first ever compiler was most likely

Re: where to get the iso c90 compiler?

2006-12-28 Thread Vizion
[EMAIL PROTECTED] wrote: [Fistly, people wrote code in pure binary language. Then assembly were invented and later they wrote higher level languages in assembly.] With whatever C compiler the gcc developer had at that time. It probably wasn't. The first ever compiler was most likely

Re: where to get the iso c90 compiler?

2006-12-28 Thread Gabor Kovesdan
[EMAIL PROTECTED] schrieb: [Fistly, people wrote code in pure binary language. Then assembly were invented and later they wrote higher level languages in assembly.] With whatever C compiler the gcc developer had at that time. It probably wasn't. The first ever compiler was most likely

Re: where to get the iso c90 compiler?

2006-12-28 Thread Duane Hill
Gabor Kovesdan wrote: [EMAIL PROTECTED] schrieb: [Fistly, people wrote code in pure binary language. Then assembly were invented and later they wrote higher level languages in assembly.] With whatever C compiler the gcc developer had at that time. It probably wasn't. The first ever

where to get the iso c90 compiler?

2006-12-27 Thread deeptech71
so, where? (also for linux?) ___ freebsd-questions@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-questions To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: where to get the iso c90 compiler?

2006-12-27 Thread Michael P. Soulier
On 12/27/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: so, where? (also for linux?) Can you not use gcc in pedantic mode? Mike -- Michael P. Soulier [EMAIL PROTECTED] Any intelligent fool can make things bigger and more complex... It takes a touch of genius - and a lot of courage to move in

Re: where to get the iso c90 compiler?

2006-12-27 Thread deeptech71
Gabor Kovesdan wrote: [EMAIL PROTECTED] schrieb: so, where? (also for linux?) The -std option of gcc is for setting the dialect, see this page: http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc/C-Dialect-Options.html#C-Dialect-Options Cheers, Gabor I want to compile the GCC 4.1.1 compiler.

Re: where to get the iso c90 compiler?

2006-12-27 Thread Gabor Kovesdan
[EMAIL PROTECTED] schrieb: so, where? (also for linux?) The -std option of gcc is for setting the dialect, see this page: http://gcc.gnu.org/onlinedocs/gcc-4.1.1/gcc/C-Dialect-Options.html#C-Dialect-Options Cheers, Gabor ___