Don't see how that would be beneficial during OS development except detrimental... Maybe later on I'l start to use Linux though...bwat wrote:Yes.codertom wrote:What experience would have more of if I use linux for developing an OS rather than Windows? How to use linux?
Best IDE for OS development
Re: Best IDE for OS development
- Bender
- Member
- Posts: 449
- Joined: Wed Aug 21, 2013 3:53 am
- Libera.chat IRC: bender|
- Location: Asia, Singapore
Re: Best IDE for OS development
Using UNIX tools and dev'ing in a UNIX Environment does make you a wide-view programmer. And since Linux aims to be UNIX compliant, programming on Linux will get you a lot of experience. You'll soon see that after you enter the world of OS Development, UNIX tools will shed light on your path. Rather saying "Use Linux" I would say "Learn to work on a UNIX-like Environment" for OS Development. If you're using Linux, the advantage is that you'll not have to deal with nuisances that happen on Cygwin (a UNIX-like Environment for Windows which I use).codertom wrote:Don't see how that would be beneficial during OS development except detrimental... Maybe later on I'l start to use Linux though...bwat wrote:Yes.codertom wrote:What experience would have more of if I use linux for developing an OS rather than Windows? How to use linux?
IMO using Linux isn't that hard, but instead it gives you a lot of choices, under Windows you're stuck with that Windows Explorer and the default Desktop Window Manager (there are unofficial tweaks which I won't recommend) under Linux you have a huge amount of choices. Pick the one that suits you.
"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell
(R3X Runtime VM)(CHIP8 Interpreter OS)
(R3X Runtime VM)(CHIP8 Interpreter OS)
- max
- Member
- Posts: 616
- Joined: Mon Mar 05, 2012 11:23 am
- Libera.chat IRC: maxdev
- Location: Germany
- Contact:
Re: Best IDE for OS development
I'm using Eclipse CDT for my OS. Offers a lot of nice features for C++ development, very good code completion, templates and more, plugins for version management, plugins for all kinds of buildscript/external tools aaaand you can use the GDB integration to debug my kernel stepwise through the code
Re: Best IDE for OS development
Little update: I've decided to make my own IDE thing which has it's own Solution/Project system and build system that will make everything automatic (not implimented yet). I'm using the SyntaxBox syntax highlighter from Alsing and the Microsoft Visual Studio icons (+ some more icons found online).
The build system would perform all the "makefile" stuff for you based on what the projects are setup as (the project types being: kernel, bootsector, other).
The color scheme is called "Son of Obsidian"
The build system would perform all the "makefile" stuff for you based on what the projects are setup as (the project types being: kernel, bootsector, other).
The color scheme is called "Son of Obsidian"
- Bender
- Member
- Posts: 449
- Joined: Wed Aug 21, 2013 3:53 am
- Libera.chat IRC: bender|
- Location: Asia, Singapore
Re: Best IDE for OS development
When real programmers need to edit source code they just ed it. (not serious)
"In a time of universal deceit - telling the truth is a revolutionary act." -- George Orwell
(R3X Runtime VM)(CHIP8 Interpreter OS)
(R3X Runtime VM)(CHIP8 Interpreter OS)
Re: Best IDE for OS development
http://xkcd.com/378/Bender wrote:When real programmers need to edit source code they just ed it. (not serious)
(And seriously: vim)