Post subject: Computer Science Majors and Compilers/Editors/IDE's/etc
Posted: Mon 01-24-2005 1:15PM
Captain
Joined: Tue 02-24-2004 10:30PM Posts: 150
Source: TJ South
Hey. I know in CS 53 we used the unix jpico compiler, and in CS 153 we use MS Visual Studio. I was wondering what all the upper level courses used as a compiler/editor/Integrated Development Enviroment/etc. Just curious.
Whatever the hell you want usually. As long as it ends up compiling on the Dells (32-bit Linux) with g++ (this is usually dictated by the instructor).
--- Personal Preference ---
I've always just used vim (editor), gcc (compiler tools), make (project build tools), valgrind (profiler) and gdb (debugger)... nothing too fancy, but granulated enough so that I can swap tools out for better ones when I need to.
I think MSVC++ has most of those built in for Windows people, and KDevelop/Anjuta does the same for Linux/UNIX people. Then there's always emacs (the end-all-be-all of software).
Some classes will want the program to run on unix/linux some will want it to run on windows and some won't care. Most the time they don't care what language you use, and I have never had them tell him what environment to use. In 53 I used EditPlus2 instead of JPico. I need a mouse and ctrl+c, ctrl+v.
Just be careful you don't get yourself a file full of ^M's.
Just be careful you don't get yourself a file full of ^M's.
cat (filename) | tr "\r" " " > (cleanfilename)
(filename) is the name of the file you want to clean up; (cleanfilename) is the name of the resulting file (itl'll get created if it doesn't exist; it'll get overwritten if it does).
Users browsing this forum: No registered users and 1 guest
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum