Compiling with g++ using multiple cores
Quick question: what is the compiler flag to allow g++ to spawn multiple instances of itself in order to compile large projects quicker … Read more
Quick question: what is the compiler flag to allow g++ to spawn multiple instances of itself in order to compile large projects quicker … Read more
I’m building a simple C++ program and I want to temporarily substitute a system supplied shared library with a more recent version of … Read more
I’m compiling my C++ app using GCC 4.3. Instead of manually selecting the optimization flags I’m using -march=native, which in theory should add … Read more
How do I install g++ for Fedora Linux? I have been searching the dnf command to install g++ but didn’t find anything. How … Read more
Can anyone explain why following code won’t compile? At least on g++ 4.2.4. And more interesting, why it will compile when I cast … Read more
I am running the 32bit version of Ubuntu 10.10 and trying to cross compile to a 64 bit target. Based on my research, … Read more
I’m working on a project that will read compiler error messages of a particular variety and do useful things with them. The sample … Read more
I want to write a macro in C that accepts any number of parameters, not a specific number example: #define macro( X ) … Read more
I just ran across the following error (and found the solution online, but it’s not present in Stack Overflow): (.gnu.linkonce.[stuff]): undefined reference to … Read more
I am getting a lot of these warnings from 3rd party code that I cannot modify. Is there a way to disable this … Read more