Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What are your experiences with Code::Blocks? [closed]

Tags:

c++

ide

I looked at Code::Blocks and it certainly looks great for c++ development, I like it's multiplatform capabilities (runs everywhere), but I wanted to get your feedback.

Is it good/stable enough to be used in a professional environment?

Thanks.

like image 364
Daniel Rodriguez Avatar asked Jan 23 '23 23:01

Daniel Rodriguez


1 Answers

You might want to know that they don't have an automatic way to convert their project-organization file (.cbp) into a makefile. There's supposedly a plugin for this but it's not part of the main package, and it looks like it hasn't been maintained for years. You could get Code::Blocks to use your own makefile, but then you would have to manually edit it for every new source file you add to your project.

like image 144
int3 Avatar answered Feb 04 '23 17:02

int3