Open Watcom

Programming, for all ages and all languages.
Post Reply
JBert
Posts: 1
Joined: Sat Jan 10, 2009 12:14 pm

Open Watcom

Post by JBert »

Hi, I'm new to programming and was wondering if Open Watcom is capable of making an operating system?

Thanks,
JBert
User avatar
Combuster
Member
Member
Posts: 9301
Joined: Wed Oct 18, 2006 3:45 am
Libera.chat IRC: [com]buster
Location: On the balcony, where I can actually keep 1½m distance
Contact:

Re: Open Watcom

Post by Combuster »

Yes it can be done, but you won't get much support for it if you run into problems
"Certainly avoid yourself. He is a newbie and might not realize it. You'll hate his code deeply a few years down the road." - Sortie
[ My OS ] [ VDisk/SFS ]
DeletedAccount
Member
Member
Posts: 566
Joined: Tue Jun 20, 2006 9:17 am

Re: Open Watcom

Post by DeletedAccount »

Yes . In fact any 'compiler' can be used to create an os

Regards
Shrek
User avatar
Love4Boobies
Member
Member
Posts: 2111
Joined: Fri Mar 07, 2008 5:36 pm
Location: Bucharest, Romania

Re: Open Watcom

Post by Love4Boobies »

Shrek wrote:In fact any 'compiler' can be used to create an os
A compiler does not necessarily produce native code (and I'm not talking about stuff like managed code). Generally speaking, a compiler can produce any type of code - for instance AML code can't be used to create an OS, it's used solely for ACPI support.
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
Craze Frog
Member
Member
Posts: 368
Joined: Sun Sep 23, 2007 4:52 am

Re: Open Watcom

Post by Craze Frog »

JBert wrote:Hi, I'm new to programming and was wondering if Open Watcom is capable of making an operating system?

Thanks,
JBert
Open Watcom won't make an OS all by itself. But Open Watcom can be used to compile an operating system that you have written.
User avatar
Love4Boobies
Member
Member
Posts: 2111
Joined: Fri Mar 07, 2008 5:36 pm
Location: Bucharest, Romania

Re: Open Watcom

Post by Love4Boobies »

Craze Frog wrote:Open Watcom won't make an OS all by itself. But Open Watcom can be used to compile an operating system that you have written.
Pwned :D
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
User avatar
Love4Boobies
Member
Member
Posts: 2111
Joined: Fri Mar 07, 2008 5:36 pm
Location: Bucharest, Romania

Re: Open Watcom

Post by Love4Boobies »

Hmm, Open Watcome seems to be a nice compiler; unlike GCC it even has SEH support. However, there's no 64-bit port yet.
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
tantrikwizard
Member
Member
Posts: 153
Joined: Sun Jan 07, 2007 9:40 am
Contact:

Re: Open Watcom

Post by tantrikwizard »

I began an OW port. It went fairly well but there were some strange problems with some hidden RTL function primarily because my kernel relies heavily on C++ features. The hidden functions in the RTL were difficult to locate and port, no documentation. There shouldnt be a problem with hidden RTL functions if youre not using some special C++ features. Check out the WIKI for some OW OS info.
Post Reply