no ide? Let's make one!

All off topic discussions go here. Everything from the funny thing your cat did to your favorite tv shows. Non-programming computer questions are ok too.
User avatar
NickJohnson
Member
Member
Posts: 1249
Joined: Tue Mar 24, 2009 8:11 pm
Location: Sunnyvale, California

Re: no ide? Let's make one!

Post by NickJohnson »

Works great for me, nice job. I can't get gedit to autodetect *.s files though - I made sure to change *.asm to *.s in the .lang file's header. I even restarted my Linux box... do I have to clear gtksourceview's cache or something?
User avatar
scgtrp
Member
Member
Posts: 30
Joined: Sat Mar 28, 2009 7:32 pm

Re: no ide? Let's make one!

Post by scgtrp »

You do have to restart gedit, but not Linux itself. If you run gedit from a terminal do you get any warnings/errors printed?
User avatar
NickJohnson
Member
Member
Posts: 1249
Joined: Tue Mar 24, 2009 8:11 pm
Location: Sunnyvale, California

Re: no ide? Let's make one!

Post by NickJohnson »

That's odd - now it works for me. I bet it was some sort of caching thing :evil:.
User avatar
scgtrp
Member
Member
Posts: 30
Joined: Sat Mar 28, 2009 7:32 pm

Re: no ide? Let's make one!

Post by scgtrp »

It's only cached until you close gedit. Probably something else happened that you didn't notice.

Have a new version. This one highlights NASM's pseudoinstructions (db etc., resb etc.) as instructions.
Attachments
asm-intel.lang.bz2
(3.19 KiB) Downloaded 141 times
User avatar
AndrewAPrice
Member
Member
Posts: 2298
Joined: Mon Jun 05, 2006 11:00 pm
Location: USA (and Australia)

Re: no ide? Let's make one!

Post by AndrewAPrice »

It's been propose a few times that someone should create an IDE just for OSDev'ing. But what would it feature that IDE's now don't offer?

And if you say kernel development, I spent very little time in actual kernel code (I'm developing a microkernel)..
My OS is Perception.
User avatar
gravity0
Posts: 16
Joined: Fri Jan 09, 2009 8:47 am
Location: Belluno, Italy
Contact:

Re: no ide? Let's make one!

Post by gravity0 »

I use CodeLite and i think is one of the best since it supports custom makefiles... No debugging either....
User avatar
xvedejas
Member
Member
Posts: 168
Joined: Thu Jun 04, 2009 5:01 pm

Re: no ide? Let's make one!

Post by xvedejas »

I use Geany plus a bash script that does all the compiling / assembling / linking for me.
Ratty
Posts: 7
Joined: Tue Aug 25, 2009 2:49 pm

Re: no ide? Let's make one!

Post by Ratty »

I am also developing an IDE. It will accept XML files to describe syntax highlighting and one of the key features will also be auto word suggestion. Compilation and such will be done by a third party application such as NASM so my application is really to make it all seem a lot smoother and provide a nice text editor.

OP: Good luck with your project.
Post Reply