Why don't use just use g++/gcc with a text editor... Or something like eclipse.
iamthwee
Posting Expert
5,950 posts since Aug 2005
Reputation Points: 1,543
Solved Threads: 439
evstevemd
Senior Poster
3,713 posts since Jun 2007
Reputation Points: 462
Solved Threads: 392
Hello download CodeLite and use it, it is specifically designed for C/C++ with focus only on that. As per your problem, where did you put project files?
try this:
create folder under Home that is
cd and press return key
then cd Documents/
mkdir Projects
cd Projects/
mkdir CandC++
then when creating new workspace in codelite, create it under /home/your_name/Projects/CandC++/workspace_name
Voila!
evstevemd
Senior Poster
3,713 posts since Jun 2007
Reputation Points: 462
Solved Threads: 392
or Just chmod the projects directory to 777
that is:
sudo chmod 777 folderName/
evstevemd
Senior Poster
3,713 posts since Jun 2007
Reputation Points: 462
Solved Threads: 392
Sure, Eclipse is made modular but CL was designed specifically for C/C++ so it outperforms and eclipse. Plus CodeLite is coded in C/C++ and Eclipse in Java ;)
evstevemd
Senior Poster
3,713 posts since Jun 2007
Reputation Points: 462
Solved Threads: 392
Or you could use code blocks.
Personally, why have an IDE for c++/c.
This is linux, why aren't you using vi with g++ from the command line!
iamthwee
Posting Expert
5,950 posts since Aug 2005
Reputation Points: 1,543
Solved Threads: 439
Or you could use code blocks.
Personally, why have an IDE for c++/c.
This is linux, why aren't you using vi with g++ from the command line!
For small projects I agree. But for Big project, it becomes tedious. For example with CL you have completion, refactoring, automatic add include, code beautification, SVNing, GUI and many others...So then it boils down to personal convenience
evstevemd
Senior Poster
3,713 posts since Jun 2007
Reputation Points: 462
Solved Threads: 392
With CodeLite you do it in Ubuntu and Windows and Mac.
and you can export makefiles for your project. Iam not PR for CL though ;)
evstevemd
Senior Poster
3,713 posts since Jun 2007
Reputation Points: 462
Solved Threads: 392