Hi,
I am completly new to OS Development so bear with me!
I have search around on the net for tutorials etc.. but now i need to set up an IDE or a collection of tools that will help me. Can someone give me help with that please?
Many Thanks!
Harry.
Setting up an IDE?
Setting up an IDE?
Reflect Desktop Operating System - ' You only remember the name of the OS when it crashes '
-
- Member
- Posts: 2566
- Joined: Sun Jan 14, 2007 9:15 pm
- Libera.chat IRC: miselin
- Location: Sydney, Australia (I come from a land down under!)
- Contact:
Try Notepad++ for an editor. It also supports custom key shortcuts. These are useful - I map some for my batch files for archiving, making etc...
The whole GCC toolset is generally what you'll need. DJGPP is good for Windows (Cygwin is a bit harder to setup, but better than DJGPP). GCC generally comes with *nix systems, or is very easy to get a hold of.
The whole GCC toolset is generally what you'll need. DJGPP is good for Windows (Cygwin is a bit harder to setup, but better than DJGPP). GCC generally comes with *nix systems, or is very easy to get a hold of.
- 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:
If you are developing under windows, using a GCC Cross-Compiler is recommended. Beyond that, there are many IDEs that can be used together with the compiler. People have used dev-c++ or even Visual Studio as their IDE.
Dev-C++
Is Dev-C++ a good IDE?
Reflect Desktop Operating System - ' You only remember the name of the OS when it crashes '
I use:
1. Dev-CPP
2. GCC-Cross-Compiler (cygwin)
I use dev-cpp, just for the cool syntax highlighting and because I can open many files and they stay as tabs over the source code. Dev-CPP is a nice IDE and I use it. However, if I want to compile and link something, Dev-CPP won't help me and I use my GCC-Cross-Compiler. How to create it? See Combuster's post.
After you create the gcc-cross-compiler, you might want to create makefiles to compile and link your source automatically. It's very easy to open your cygwin console and write: make enter (or something like that)!
1. Dev-CPP
2. GCC-Cross-Compiler (cygwin)
I use dev-cpp, just for the cool syntax highlighting and because I can open many files and they stay as tabs over the source code. Dev-CPP is a nice IDE and I use it. However, if I want to compile and link something, Dev-CPP won't help me and I use my GCC-Cross-Compiler. How to create it? See Combuster's post.
After you create the gcc-cross-compiler, you might want to create makefiles to compile and link your source automatically. It's very easy to open your cygwin console and write: make enter (or something like that)!
I think, I have problems with Bochs. The biggest one: Bochs hates me!
Thanks!
Thanks for the info!
Reflect Desktop Operating System - ' You only remember the name of the OS when it crashes '