Open Watcom 1.0 Released
JoshRendlesham writes "The Open Watcom C/C++ and FORTRAN 1.0 compilers have been officially released. The source, and binaries for Win32 and OS/2 systems, are available. This release also means that outside developers can join and contribute to the project." Or if you prefer, gcc is up to 3.2.2.
Does this mean that I can finally use the ROTT-source for something else than just looking at? :-)
Back in the days of DOS, if you were a developer, the Watcom C compiler was *the* thing to pirate.
graspee
I remember those old days that doom was written and compiled using Watcom C compiler. Just wondering what they(watcom) are up to now.
I used the watcom tools extensively on QNX and they were of excellent quality, this is really good news !
Hopefully this sets a trend.
MP3 Search Engine
I'm looking forward to someone benchmarking gcc vs watcom to see how they do.
MP3 Search Engine
In the late 80s (?) Watcom products were really great. They were beating on everything for the Intel platform.
I received the email yesterday about Watcom's "release" to open source. In that email it says that Sybase felt there was no commercial value in the product anymore so they released it. My question is "Has Sybase been keeping this thing up? Is it useful today?" Or is this a scam to try to give life to a dying patient? I mean perhaps people working on this might be better off working on gcc or something.
Thanks!
1. GCC: My sense is that it is not a very high performance compiler - is that true? Would a better GCC make a big difference to the free software/oss world?
2. Does the Watcom WIN32 binary run under WINE?
I was going to ask if there were any performance comparisons around showing how Watcom performed, but then I realised that anyone with half a brain ran something through Google before Slashdot.
Win32 compilers (not including Watcom - and with good reason, it's a bitch to set up on Win32)
as linked from the djgpp FAQ, some info on DOS compilers.
So, hooray! A lesson in using Google before Slashdot mixed with some blatant karma-whoring.
PS. this is good too.
Could someone post information on what companies are using Watcom and which products they've built with it?
This would also be excellent information for Watcom to put on their site. It would give them much more legitimacy.
as soon as I can compile and use a good 32bit dos extender with gcc, I will stop wasting my time with watcom. Until then, gcc is not the right tool for my job.
Has anybody heard any news recently from Watcom/Sybase about the 370 versions of Waterloo C, WATFIV, WATBOL, Pascal, Basic etc?
if you ever have to code a real time application chances are DOS is among the possible choices if you want to base it on x86 hardware. so watcom would be a good DOS compiler. it was the best back then in 1996, it should be now, as DOS tipped over prior to that and all other compiler development with it.
Check out CC65. It is a pretty good freestanding implentation of ANSI C89 on the 6502 (C-64, Apple //, Atari 800, Nintendo, etc). Projects such as uIP and uVNC have been built with it.
Same here and when I saw what VisualBasic was compared to VX-Rexx, I couldn't figure out why Watcom didn't bring VX-Rexx to the Windows platform.
VX-Rexx was great at quick and dirty applications and prototyping. I remember writing a simple text browser in VX-Rexx when I was building a Java web server. The browser let me write html and push it to the server for testing of the parsing engine.
If you've not seen it, think of it as VisualBasic on steroids. Hey, it used Rexx for one thing and the function browser was pretty cool for it's day. IMHO.
LoB
"Anyone who stands out in the middle of a road looks like roadkill to me." --Linus
So which is it?
Incidentally, vectorization in Intel C/C++ is a joke. I put so many hints into my code (aligned variables, processed stuff in suitable sized chunks etc.) and still couldn't trigger the compiler to vectorize. It's much easier to insert SSE instructions yourself.
The Intel compiler has better error reporting than MSVC++. I use it when I don't understand why MSVC++ is barfing on my template code. This is more useful than it sounds!
Doesn't it make you feel good to know that our freedoms are protected by politicans, lawyers and journalists.
One thing I know is that their optimization routine rocks.
Well, optimization routines can be divided into two parts: One is architecture independent (which involves simplification of AST and stuff) and the other is architecture independent. IIRC, their architecture-independent optimization was really great. It can correctly detect redundant codes and simplify it.
I used to be an ASM programmer as I was a performance freak. When I compile my C/C++ program using Watcom, it almost always produced near optimized (i.e. the "gold-standard") asm code. I knew this when I dumped out the assembler code.
I knew that their arch-independent optimization is really good because when you add things such as calculation of busy expression (i.e. expression that you used over and over) and stuff, it correctly cache the calculation before hand. So, you will save a tremendous time, especially if you do it in a loop. The problem was (again, IIRC) that was not perfect and some of the expressions are left undetected. But, that's probably a bug.
IMHO, arch-independent optimization play a lot greater role than the arch-dependent one (ok, some of you may not agree with me). Things like peephole optimization is great, but is of limited usefulness once you apply the correct transformation of the AST and other internal structures.
This is also partly why Intel optimizing compiler is also great. I heard that some of the folks are doing partial evaluation on the code -- which can greatly help speeding up the result. The idea was: If you use a particular routine (like function) only with a handful of value range, it will automatically create a specialized and optimized function for you exploiting the nature of the input values. For example: You probably have seen the routine that calculates (-1)^n used in a routine that calculates x^y. The optimizing compiler thus should be able to generate: return (n && 1 == 0) ? 1 : -1; instead of the looping. This only involves some (expensive) static analyses computations. I have yet to see this in other compilers.
Therefore, this release is really really good thing. I hope that GNU compiler teams would pickup some of their good stuff.
--
Error 500: Internal sig error
- Or is this a scam to try to give life to a dying patient?
No, it is not a scam. Sybase truly does not care what happens to WATCOM C/C++ (so long as it doesn't come back and bite them on the butt.)And to continue the story...
iAnywhere makes the very powerful, popular (and developer friendly!) SQL Anywhere Studio as well as other products.
See more:
- Sybase Milestones
- iAnywhere Solutions History and Milestones
Caveat: I might have some biases...