Linux coding/compiling under Linux
Linux coding/compiling under Linux
Hi, i wanted to aks if someone can recommend me a nice development tool, like M$ Visual Studio that also works under Linux... or that can compile Linux binaries under windows... I know about Cygwin and so on... but i need makefiles to compile with them and i don't have any idea about how to write a makefile...
Thanks in advance
R2
Thanks in advance
R2
R2D2's Irrlicht Mods
Messed up with my database so the page is not working at the moment -.-
CPU: Core 2 Quad Q6700RAM: 4096 mb Graphics: Radeon 4850 512mb Sound: on board InternetConnection: DSL
Messed up with my database so the page is not working at the moment -.-
CPU: Core 2 Quad Q6700RAM: 4096 mb Graphics: Radeon 4850 512mb Sound: on board InternetConnection: DSL
Well sorry GFX this time i really forgot that there's a nice button up there that can be very helpful... sorry
anyway... thx for the help
anyway... thx for the help
R2D2's Irrlicht Mods
Messed up with my database so the page is not working at the moment -.-
CPU: Core 2 Quad Q6700RAM: 4096 mb Graphics: Radeon 4850 512mb Sound: on board InternetConnection: DSL
Messed up with my database so the page is not working at the moment -.-
CPU: Core 2 Quad Q6700RAM: 4096 mb Graphics: Radeon 4850 512mb Sound: on board InternetConnection: DSL
try anjuta, and configure it according to this tut:
http://irrlicht.sourceforge.net/phpBB2/ ... inux#29339
it's a very nice ide for linux
http://irrlicht.sourceforge.net/phpBB2/ ... inux#29339
it's a very nice ide for linux
I use anjuta for editing but I write makefiles for compiling.... the trouble with makefiles is that
they can be very confusing(look at a few examples, you might find they look totally different)
but once you figure them out, its really easy.... I dont like using the anjuta project settings to
compile because I dont want to depend on one IDE, you never know when something better
comes along.....
they can be very confusing(look at a few examples, you might find they look totally different)
but once you figure them out, its really easy.... I dont like using the anjuta project settings to
compile because I dont want to depend on one IDE, you never know when something better
comes along.....
if you're looking for me, start looking on irc, i'm probably there.
when iam programming on linux (which does not occur very often since a. my ati is very slow and b. irrlicht´s linux support is not as advanced as windows support and c. i dont use linux much at the moment because of some non-supported hardware) i use a simple text editor (gEdit, it has cool features such as syntax highlighting) and a commandline with a selfwritten makefile to compile the project. thats all you need, i think linux ide´s are somehow confusing compared to just a texteditor and makefiles (its good to learn how to use makefiles anyway when you want to know linux a little better)
yup, Gfx has also got a point. It depends on how you like to work.
When I work with a text editor in linux, I like to use SciTe (scintilla text editor). It's Gtk based editor that recognizes and highlights almost every programming language out there, and it also has compile and build functions.
It's got both windows and linux versions, but the compiling options work better with linux's make files.
http://www.scintilla.org/SciTE.html
When I work with a text editor in linux, I like to use SciTe (scintilla text editor). It's Gtk based editor that recognizes and highlights almost every programming language out there, and it also has compile and build functions.
It's got both windows and linux versions, but the compiling options work better with linux's make files.
http://www.scintilla.org/SciTE.html
-
- Posts: 20
- Joined: Tue Sep 21, 2004 9:08 pm
-
- Posts: 20
- Joined: Tue Sep 21, 2004 9:08 pm
kdevelop works great
I recomend using Kdevelop (my version is 3.2).
All you have to do is (taken from example make files) add in project options (CXXFLAGS in compiler options). (also CXX option above should be set to g++)
Also code completion is working for Irrlicht (as many other) after adding include directory to Project Options->specific for C++ -> code completion
Nothing more I need to have comfortable enviroment! It's GREAT!
All you have to do is (taken from example make files) add
Code: Select all
-I"<patch2irrlicht>/include" -I"/usr/X11R6/include" -L"/usr/X11R6/lib" -L"<path2irrlicht>/lib/Linux" -lIrrlicht -lGL -lXxf86vm -lXext -lX11 -lz -ljpeg
Also code completion is working for Irrlicht (as many other) after adding include directory to Project Options->specific for C++ -> code completion
Nothing more I need to have comfortable enviroment! It's GREAT!