Search Results

0
votes

What are some good compilers to use when learning C++?

I say GCC for simple things because for a more complicated project the build process isn't so easy True, but I don't think understanding the build process of a large project is …
1
vote

What’s the best stable C++ IDE with a GUI that runs on linux?

I like SciTE on linux and windows. It's very lightweight, and customizable. …
1
vote

C (or any) compilers deterministic performance

How do you know that the compiler you are using generates machine code that matches the c code's functionality exactly and that the compiler is fully deterministic? …
12
votes

Why are we still using compiler command lines?

I'm surprised nobody has mentioned the Unix philosophy. This is the Unix philosophy: Write programs …
0
votes

What’s safe for a C++ plug-in system?

Qt has a very nice system for plugins that I've used in the past. It uses Qt's meta-object system to overcome many of the problems typica …
1
vote

What strategies have you used to improve build times on large projects?

In general large C++ projects that I've worked on that had slow build times were pretty messy, with lots of interdependencies scattered through the code (the same include files used in most cpps, f …