vote up 5 vote down star

I was researching C compilers today, and was surprised to see that Watcom was still alive as OpenWatcom.

I never got to play with the watcom compiler, but I always wanted to since it was known to "Generate better code than other compilers at the time" (1989).

The first C compiler I used was Turbo C v2, from Borland. In fact it was a complete IDE for DOS. I also used DJGPP a lot for MAME development until they moved to mingw.

Anyways, nostalgia kicked in, so what memories do you have of your first C compilers?

I'd love to see some ads if you have any! Here's one I found for Turbo C.

alt text

flag
@qrdl: did you remove my changes on purpose? – Can Berk Güder Mar 16 at 13:12
Nope. Looks like SO doesn't handle conflicts - I didn't get any warnings on submitting changes that content was changed. Sorry about that. Please re-submit. – qrdl Mar 16 at 13:17
@qrdl: it's OK, I figured it was a conflict and edited again. – Can Berk Güder Mar 16 at 13:20
@those voting to close: can we at least have some discussion here? there have been many polls like this here. – Can Berk Güder Mar 16 at 13:21
Where do you view the votes to close? – Chris Mar 16 at 14:13
show 7 more comments

closed as not a real question by Bombe, Adam Wright, cletus, Greg Dean, dmckee Mar 16 at 14:41

15 Answers

vote up 4 vote down

Turbo C V2.0 here. I twas a great environment for the day. Looking back it's pretty amazing what they were able to do with the limited resources DOS provided.

link|flag
Believe it or not, my old college still uses it for C programming... – EnderMB Apr 4 at 2:11
vote up 0 vote down

Mine was on a Wicat 68000 based UNIX box, circa 1985. Had to edit my first program with 'ed' because the termcap (or was it terminfo) setup was screwed - fixing that was my first UNIX sys admin experience.

link|flag
vote up 2 vote down

I first used Software Toolworks' C compiler on HDOS. They also sold it for CP/M. No floats, doubles or longs, and no separate compilation or linking. 16 bit ints and shorts.

This meant that "#include <stdio.h>" would pull in the complete source of the standard io library to be compiled into your program.

I'm pretty sure this was based on Ron Cain's "small c" compiler originally published as source in Dr. Dobbs.

link|flag
It was based on Small C. I managed to achieve separate compilation by running the output through Microsoft's Macro-80 assembler instead of the HDOS assembler. Macro-80 generated .obj files and came with a linker. No librarian though, so I wrote my own. – Ferruccio Mar 16 at 14:16
In the first version they didn't support Macro-80, partially because their header files were only available in a form containing all the code. It was an amazingly useful tool within its limitations. – Darron Mar 16 at 15:29
vote up 0 vote down

Mine was called NorthC, for AmigaDOS on m68k. I remember that neither gcc nor egcs would even deign to launch in the 2MB of RAM my Amiga had. The Amiga development kit was proprietary and expensive so I never used anything beyond the std c library.

link|flag
vote up 0 vote down

Mine was GCC 2.95 on RedHat 6.2. Yeah, I'm young. =)

That being said, I used Borland Turbo Pascal on DOS for 2-3 years before I met Linux and C.

link|flag
Ahh, memories. Wasnt this the infamous GCC fork? Or was that 2.96? – Benji Mar 17 at 0:52
Yes, it was. =) But if memory serves correctly, it was a merge, not a fork. – Can Berk Güder Mar 17 at 8:37
Heh. You are young, Can. GCC 2.9ish (EGCS) was forked from the main GCC, developed a while until everyone was happy with it, then merged back in (for 3.0 I believe). The fork announcement is archived here: home.schmorp.de/egcs.html – T.E.D. Mar 17 at 13:47
@ted: yeah, I was only 14 when GCC 2.95 was released =) anyway, the GCC history page says: "This is the first release of GCC since the April 1999 GCC/EGCS reunification..." for 2.95. – Can Berk Güder Mar 17 at 13:53
vote up 0 vote down

I guess i came very late.. mine was borland's Turbo C V3 !!

link|flag
vote up 0 vote down

GCC was the first one that I really used. I also had a copy of Turbo C years earlier, but I didn't actually understand anything about it, I was so young :-)

link|flag
vote up 2 vote down

It was Watcom C, for DOS.

I think it was 1993, compiler version 8 if I'm not mistaken.

link|flag
Funny to be upvoted for this :) – qrdl Mar 16 at 14:57
I'm jealous that you got to play with it! – Benji Mar 17 at 0:52
I agree. My answer got a couple of positive comments, and no upvotes. Darn fickle mods! :-) – T.E.D. Mar 17 at 13:40
vote up 0 vote down

One of the first I remember using was a port of GCC to the Atari ST back in the late 80s/early 90s.

link|flag
Didn't know this existed. You got a link handy? – Benji Mar 17 at 0:53
vote up 0 vote down

My first C compiler used at work was VAX C but the first one I bought for use at home was HABA HIPPO-C for the Atari ST.

No floating point support and tendency to run out of registers but I managed to write a basic MIDI sequencer with it.

Also included a basic command line processor, editor and quite a good assembler which was an essential tool for hacking the ST's BIOS.

link|flag
vote up 2 vote down

DM

link|flag
DM started making C compilers when? – Benji Mar 17 at 0:54
DM started making C compilers perhaps in 1996. – eleven81 Mar 17 at 13:46
vote up 0 vote down

DEC VMS C was my first C compiler. I can't remember too much about it, so I guess it was a pretty standard C implementation.

I do remember one funny bug it had though. It actually allowed you to assign values into literals. I discovered this when a friend's code bizzarely starting printf'ing all literal '1's as '7'. After about 30 minutes we tracked it down to this statement:

if (1 = x) {

(note the single '=' instead of a double '=') Yes, that was a typo. This has forever been exhibit A in my argument that C was badly designed.

link|flag
Itb would be exhibit A in my argument that DEC couldn't (or more likely wouldn't) write a good C compiler. Why do you think so many VAX shops switched to UNIX? – Neil Butterworth Mar 16 at 13:33
+1 (for the comment; -1 for DEC) – Mikeage Mar 16 at 13:34
Actually, my memory of it was that DEC compilers in general rocked. The reason everyone switched to UNIX IMHO had more to do with the relative qualities of the two Operating Systems. One was a commodity, the other custom. Commodity wins every time. – T.E.D. Mar 17 at 13:34
vote up 0 vote down

Mine was HiSOFT C for the ZX Spectrum.

Source editor, compiler/linker, compiled program and of course your own source code, all fitting into 48 KB of RAM.

Think about that when you're complaining about the "limitations of DOS"! :)

Possible bug in SO? It can't deal with this URL:

http://www.worldofspectrum.org/infoseek.cgi?regexp=^HiSoft+C$&pub=^HiSoft$&model=spectrum

link|flag
vote up 0 vote down

"Easy C" on the Acorn Archimedes, back in about 1995. It was pretty broken (eg, would only compile loops if you had the body as a block {...}, rather than a single statement). It also tried to "optimize" certain 'for' loops to go backwards... but broke them too.

Soooo... in '98 I decided to port LCC to emit ARM code, having written an assembler and linker to support it. I actually managed to get it all working in the end, minus floating point stuff (for which I didn't have the info).

I guess I had too much time on my hands back in those days. Wish I still had a copy of the code.

link|flag
vote up 1 vote down

My first C compiler was The Software Toolworks C. It ran on HDOS and generated 8080 assembly language which you had to then run through the system's assembler. This was in the early 80's.

I bought it because I was frustrated with the lack of a usable and affordable Pascal compiler for that system, so I set out to build my own. Armed with my K&R book and a very rudimentary understanding of compilers (how hard could it be!), I was determined to build my own Pascal compiler. I built the lexical scanner and got pretty deep into semantic analysis when I realized that I would much rather be working in C than Pascal and I abandoned the project.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.