How can I develop my OS using the VC++ IDE?

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Guest

How can I develop my OS using the VC++ IDE?

Post by Guest »

My compiler is DJGPP, but I wanna use the IDE that comes with VC++ (to invoke the compiler and linker) so I won't ever have to mess with makefiles again. :) Is this possible? If so, how??
J. Weeks

RE:How can I develop my OS using the VC++ IDE?

Post by J. Weeks »

>On 2002-05-09 20:01:42, Anonymous wrote:
>My compiler is DJGPP, but I wanna use the IDE that comes with VC++ (to invoke the compiler and linker) so I won't ever have to mess with makefiles again. :) Is this possible? If so, how??

I doubt it. Microsoft isn't overly respectful of
you using their products with other non-microsoft
products... it's not their style.

Anyway, you should be able to figure out for
yourself... just check out the preferences and
project settings. See if there's an option for
the compiler envoked. It'll be tough, though,
seeing as though gcc and vcc doesn't share the
same compiler switches.

Debugging will also be impossible, as the two
compilers don't export the same debugging symbols.

Personally, I'd say you'd be better off trying to
find a DJGPP specific IDE. Check out "rhide", for
example. It's a nice one, like the ol' TC++
IDE, and it sports a front end to gdb.

Jeff
Post Reply