What Editor/IDE Do You Use For OS Development

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.
Hoozim
Member
Member
Posts: 53
Joined: Fri Jul 23, 2010 8:26 am

What Editor/IDE Do You Use For OS Development

Post by Hoozim »

What Editor/IDE Do You Use For OS Development? What are you opinions on the editor/IDE?

Hoozim
User avatar
KernelDeveloper
Posts: 15
Joined: Tue Mar 13, 2012 11:25 am
Location: Earth
Contact:

Re: What Editor/IDE Do You Use For OS Development

Post by KernelDeveloper »

I use Windows Notepad for typing assembly and C code.A GCC Compiler and NASM Assembly and link with GNU LD.

One Question I have is , Visual Studio 2010 is damn slow comparing to the previous versions.Why???
On my PC it takes 60sec to open the VS Start page.
No one is perfect in the world!!! :)

Make sure you visit this:
http://tinyurl.com/kerneldeveloper
Rudster816
Member
Member
Posts: 141
Joined: Thu Jun 17, 2010 2:36 am

Re: What Editor/IDE Do You Use For OS Development

Post by Rudster816 »

KernelDeveloper wrote:I use Windows Notepad for typing assembly and C code.A GCC Compiler and NASM Assembly and link with GNU LD.

One Question I have is , Visual Studio 2010 is damn slow comparing to the previous versions.Why???
On my PC it takes 60sec to open the VS Start page.
Do you live in the stone age or something? Notepad is good for a lot of things, but coding really isn't one of them. You should check out Notepad++, its got that same Notepad feeling but it actually has features.

Visual Studio 2010 Ultimate opens up in very quickly on my desktop (3-5 seconds). Although thats with an overclocked Core i7 920 and 12GB of memory, however my system drive is a quite slow (5400RPM WD Green). Considering its a .NET application and has to be JIT'd, the loads times are pretty decent considering it's a Microsoft product.


Right now I'm using a combination of Notepad++ and Visual Studio 11 Beta. Intellisense doesn't work perfectly with C code (It assumes it's C++), but it's a very nice feature to have.
User avatar
KernelDeveloper
Posts: 15
Joined: Tue Mar 13, 2012 11:25 am
Location: Earth
Contact:

Re: What Editor/IDE Do You Use For OS Development

Post by KernelDeveloper »

Notepad++ is good, I never knew about that, on my comp VS2010 is hopeless.
I am tring to compile the notepad++ source code, i am crazy.
No one is perfect in the world!!! :)

Make sure you visit this:
http://tinyurl.com/kerneldeveloper
klange
Member
Member
Posts: 679
Joined: Wed Mar 30, 2011 12:31 am
Libera.chat IRC: klange
Discord: klange

Re: What Editor/IDE Do You Use For OS Development

Post by klange »

VIM 7.
Threadcore
Posts: 6
Joined: Wed Nov 23, 2011 6:20 am

Re: What Editor/IDE Do You Use For OS Development

Post by Threadcore »

Eclipse CDT and eclox for generating the doxygen documentation. In the past I used also notepad++
User avatar
bluemoon
Member
Member
Posts: 1761
Joined: Wed Dec 01, 2010 3:41 am
Location: Hong Kong

Re: What Editor/IDE Do You Use For OS Development

Post by bluemoon »

When I'm at home on mac, I use xcode (project with external Makefile).

Sometime I do it at office, which I boot into linux under vmware player,
I use kDevelop and I like the little shell box inside IDE.

And when I tab'd outside IDE and at the command shell to test my OS, nano is quick for small code patch.
User avatar
brain
Member
Member
Posts: 234
Joined: Thu Nov 05, 2009 5:04 pm
Location: UK
Contact:

Re: What Editor/IDE Do You Use For OS Development

Post by brain »

I don't use an ide, I use vim and a set of makefiles and sometimes perl for more complex work and its lovely lovely in place edit commandline.

At a push I've also been known to use notepad++ when stuck in windows though...
aod
Member
Member
Posts: 26
Joined: Fri Sep 30, 2011 2:36 am

Re: What Editor/IDE Do You Use For OS Development

Post by aod »

Vim + gcc + binutils + nasm + virtualbox + bochs, that's my working set.
User avatar
bubach
Member
Member
Posts: 1223
Joined: Sat Oct 23, 2004 11:00 pm
Location: Sweden
Contact:

Re: What Editor/IDE Do You Use For OS Development

Post by bubach »

fasmw for asm syntax highlighting and a batch file for making the image file and testing in bochs.
"Simplicity is the ultimate sophistication."
http://bos.asmhackers.net/ - GitHub
User avatar
GAT
Member
Member
Posts: 75
Joined: Wed Nov 30, 2011 9:51 pm
Contact:

Re: What Editor/IDE Do You Use For OS Development

Post by GAT »

mousepad and NASM.
d3: virtualizing kernel in progress
https://github.com/WizardOfHaas/d3/
User avatar
qw
Member
Member
Posts: 792
Joined: Mon Jan 26, 2009 2:48 am

Re: What Editor/IDE Do You Use For OS Development

Post by qw »

I used to work with Microsoft Word (yes, really) and recently switched to Programmer's Notepad.
Radian
Posts: 8
Joined: Fri Mar 09, 2012 4:05 am

Re: What Editor/IDE Do You Use For OS Development

Post by Radian »

try vim cream

Most people get cars is not in the case for studying the engine.
User avatar
JackScott
Member
Member
Posts: 1032
Joined: Thu Dec 21, 2006 3:03 am
Location: Hobart, Australia
Mastodon: https://aus.social/@jackscottau
GitHub: https://github.com/JackScottAU
Contact:

Re: What Editor/IDE Do You Use For OS Development

Post by JackScott »

nano or vi for small changes.

Netbeans for anything significant.
Post Reply