0
votes
How does gcc implement stack unrolling for C++ exceptions on linux?
There isn't much documentation currently available, however the basic system is that GCC translates try/catch blocks to …
3
votes
“You can’t forward declare classes that overload operator&”?
I think the statement isn't precise. Like the other answers, I'm guessing here. First, I'm assuming they're referring to …
4
votes
Detect GCC compile-time flags of a binary
A quick look at the GCC documentation doesn't turn anything up.
he Boost guys are some of the smartest C++ developers out there, and they …
1
vote
Is there a standard way to do findfirst, findnext with gcc on linux using stl?
The STL does not, yet, have functions for listing files in a directory. But it does have functions for opening files you are already aware of.
Aside from Boost.Filesystem, there is also …
0
votes
How to know (in GCC) when given macro/preprocessor symbol gets declared?
I would like to know (when compiling a .cc file) when a #define is encountered,
…
-2
votes
Building Gnuarm toolchain from source
Download the sources available under "Files"
Unpack them
Go to each unpacked directory and type:
./configure --help
to get the available options, then ru …
0
votes
may gcc be installed, but g++ does not work?
Outside of calling the "wrong" compiler (using gcc instead of g++, see answer by Dan) it is possible but unusual to have gcc correctly built but g++ incorrectly built.
It i …
2
votes
What is gcc serial?
The slides refer to a tool from Stanford (PARSEC) meant to benchmark multithreaded shared memory programs -- a.k.a. parallel programs. In many cases, "serial" is the opposite of "parallel":
…
0
votes
Compile old C++ unix application for using in windows
I can think of two possibilities: AT&T offers both UWIN (which may be different enough from Cygwin to avoid the same tro …
0
votes
Suppressing Linking Errors in G++ 3.4.6
It's not the compiler, but the linker. The best way to "suppress" this would be to pass in the library name with the compile command:
gcc try.cc -lstdc++
…
0
votes
Dealing with “C compiler cannot create executables” in Cygwin
When I've had this problem, it has been a link error caused by Cygwin looking for "library.o" instead of "library.obj" or "library.so" instead of "library.dll".
…
2
votes
0
votes
Where is the gcov symbols?
The flag you're looking for is -lgcov when linking. That is, change:
gcc Al …
1
vote
compile error: cpumask.h: “and” may not appear in macro parameter list
I believe the problem is that "and" is a keyword in C++ but not C (they use &&).
The …
2
votes
How to allow more memory and avoid stack overflow on lots of recursion?
Although other answers talk about how to either avoid recursion altogether, or how to use tail recursion, or how to simply set a larger stack size, I think for completeness that it's worthwhile to …
