RHIDE--A good IDE for DJGPP

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
raywill

RHIDE--A good IDE for DJGPP

Post by raywill »

RHIDE--A good IDE for DJGPP,support ASM. ;)

Really good IDE for beginners.

You can Google it.
User avatar
Candy
Member
Member
Posts: 3882
Joined: Tue Oct 17, 2006 11:33 pm
Location: Eindhoven

Re:RHIDE--A good IDE for DJGPP

Post by Candy »

raywill wrote: RHIDE--A good IDE for DJGPP,support ASM. ;)

Really good IDE for beginners.

You can Google it.
For OSdev, DJGPP is pretty obsolete. For any semi-modern purpose, DJGPP is pretty obsolete.

Try Cygwin with Dev-c++ for a newer graphical IDE.

Aside from that, I've heard it was pretty good too.
raywill

Re:RHIDE--A good IDE for DJGPP

Post by raywill »

Try Cygwin with Dev-c++ for a newer graphical IDE.
I have downloaded Dev-C++ and Cygwin bin files.
But nasm is not in Cygwin package.

What should I do if I want to use nasm in Dev-C++ to compile my asm files?
bluecode

Re:RHIDE--A good IDE for DJGPP

Post by bluecode »

Download nasm, copy the executable to cygwin/bin/ and use it? ;)
User avatar
Solar
Member
Member
Posts: 7615
Joined: Thu Nov 16, 2006 12:01 pm
Location: Germany
Contact:

Re:RHIDE--A good IDE for DJGPP

Post by Solar »

raywill wrote: I have downloaded Dev-C++ and Cygwin bin files.
I hope you haven't been downloading the "Cygwin bin files" but used http://www.cygwin.com/setup.exe to have Cygwin properly installed.
But nasm is not in Cygwin package.
It is; you can select it from the "devel" group in the Cygwin setup.exe.
Every good solution is obvious once you've found it.
raywill

Re:RHIDE--A good IDE for DJGPP

Post by raywill »

I hope you haven't been downloading the "Cygwin bin files" but used http://www.cygwin.com/setup.exe to have Cygwin properly installed.
Oh,I am using setup.exe.Thanks :)

My question is how to let Dev-C++ know you are using nasm?
I created a Empty project,add a .c file and a .asm file.
But from the log I could see that Dev-C++ use gcc to compile the asm file,and of course failed.
I checked the configuration,but found no where that could tell the compiler to use nasm to compile the asm file.

Did I miss anything?
QuiTeVexat

Re:RHIDE--A good IDE for DJGPP

Post by QuiTeVexat »

Override the build command for the assembly files. It's in the project options, at least for 4.9.9.2. Project->Project Options->Files-Override build command should get you there.
Cjmovie

Re:RHIDE--A good IDE for DJGPP

Post by Cjmovie »

Or overide the entire process and tell it to use your own makefile ;).

Rhide is a cool IDE...Used it for a while before I got Dev-C++. Before Rhide I used notepad :).
raywill

Re:RHIDE--A good IDE for DJGPP

Post by raywill »

QuiTeVexat wrote: Override the build command for the assembly files. It's in the project options, at least for 4.9.9.2. Project->Project Options->Files-Override build command should get you there.
Thank you.It works now :)
Post Reply