Lord Pingas wrote:Oh, ok.
Sorry, I got a lot to learn.
I think I understand a little better now...
Basically Windows has all these IDEs that compile everything for you so you don't have to type in to the command line. But with that fancy compiler you mentioned (DCDevISOr4), you can compile to the Dreamcast, but it's from the command line.
Very good, young'n.
Lord Pingas wrote:Sorry if I sounded like a asshole there, I was just a little confused. Hehe.
Don't be. I remember when I was trying to learn for Dreamcast, I had the same problem. There were all of these brilliant people who either 1) didn't want to explain it to me or 2) weren't articulate enough to explain well.
Lord Pingas wrote:But do I have to have a Unix system?
Nope. That's what the DCDevISOr4 is for. You will be installing Cygwin, which is basically a Linux environment that runs INSIDE of Windows.
And compiling on the command line in a Linux environment isn't that hard. All you do is navigate to a directory with a makefile and literally type "make." That tells GNU Make to invoke the makefile in the current directory, and the makefile does all of the work for you.
So you can have your cute little DevC++ project to edit and manage your project. Then when you want to compile, you switch over to your cygwin terminal window and type "make" and it does the dirty work.
You can also create a batch file(/bash script) to invoke the makefile for you, so that you CAN use DevC++'s compile button to do everything just like you normally would.