Hi, I'm new to programming and was wondering if Open Watcom is capable of making an operating system?
Thanks,
JBert
Open Watcom
- Combuster
- 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
Yes it can be done, but you won't get much support for it if you run into problems
-
- Member
- Posts: 566
- Joined: Tue Jun 20, 2006 9:17 am
Re: Open Watcom
Yes . In fact any 'compiler' can be used to create an os
Regards
Shrek
Regards
Shrek
- Love4Boobies
- Member
- Posts: 2111
- Joined: Fri Mar 07, 2008 5:36 pm
- Location: Bucharest, Romania
Re: Open Watcom
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.Shrek wrote:In fact any 'compiler' can be used to create an os
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
[ Project UDI ]
-
- Member
- Posts: 368
- Joined: Sun Sep 23, 2007 4:52 am
Re: Open Watcom
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.JBert wrote:Hi, I'm new to programming and was wondering if Open Watcom is capable of making an operating system?
Thanks,
JBert
- Love4Boobies
- Member
- Posts: 2111
- Joined: Fri Mar 07, 2008 5:36 pm
- Location: Bucharest, Romania
Re: Open Watcom
PwnedCraze 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.
"Computers in the future may weigh no more than 1.5 tons.", Popular Mechanics (1949)
[ Project UDI ]
[ Project UDI ]
- Love4Boobies
- Member
- Posts: 2111
- Joined: Fri Mar 07, 2008 5:36 pm
- Location: Bucharest, Romania
Re: Open Watcom
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 ]
[ Project UDI ]
-
- Member
- Posts: 153
- Joined: Sun Jan 07, 2007 9:40 am
- Contact:
Re: Open Watcom
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.