Tagged Questions
The gcc3 tag has no wiki summary.
9
votes
1answer
256 views
are gcc-3 binaries compatible with gcc-4
I have a static library that has been compiled with gcc 3.4.3 .I would like to use this in code that will now be compiled with gcc-4.
I've read vaguely that gcc-3 and gcc-4 binaries are not ...
4
votes
1answer
128 views
Issue on RHEL4 release using boost 1.36 and C++
Apologies for the somewhat long note..but I am struggling with a mysterious problem
I only see on my RHEL4 release build. Some of my unit tests (using boost 1.36 unit test framework) fail on RHEL4 ...
3
votes
2answers
217 views
Is this a gcc optimization bug? [closed]
Here's my code:
bool func(const MY_STRUCT *const ptr, some_struct *x, int y)
{
printf("IN: %p\n", ptr); // ok
for (int i = 0; i < y; ++i) {
if (ptr->foo(x[i].key) == 0) {
...
3
votes
2answers
206 views
Question about ubuntu gcc compiler
I installed the build-essential package for ubuntu x86_64, compiling c programs and c++ programs work fine, but in the compiled binary, "Ubuntu linaro" appears. is there a way to remove this?
3
votes
3answers
614 views
Why isn't the gcc 4.x.x series compilers installed by MinGW by default?
Currently, MinGW's only installs the 3.x.x series of the gcc compiler by default. However, it looks like the 4.x.x series of compilers have been out for some time, and as others have mentioned, it ...
1
vote
1answer
63 views
alternatives to GCC 3.4.3 option -fstack-protector-all?
I'm trying to set option -fstack-protector-all in GCC 3.4.3 compiler for enabling some stack smashing protection scenarios. However when compiling with this i got error: unrecognized command line ...
1
vote
1answer
59 views
Upgrading GCC from 2.9x
I've been trying to upgrade the compiler from 2.95.2 on my PS2 Linux machine (mips) and my head is about to explode. I am not going to claim that I am good with linux.
I'll go over the process I've ...
1
vote
3answers
198 views
dynamic_cast failed when hidding symbol
I have many static libraries. One is static_lib_a.a. I create a dynamic library, dynamic_lib.so to put them together.
In static_lib_a.a, it uses xerces 3.1.1 to parse xml. The following is the code ...
1
vote
2answers
399 views
vector<bool>::push_back bug in GCC 3.4.3?
The following code crashes for me using GCC to build for ARM:
#include <vector>
using namespace std;
void foo(vector<bool>& bools) {
bools.push_back(true);
}
int main(int argc, ...
0
votes
3answers
32 views
Possibility to simulate -Werror option behavior with GCC 3.4?
Is there any hope to force GCC 3.4 compiler to make all warnings into errors like GCC's 4.4 -Werror option does ?
Thanks
0
votes
1answer
198 views
C: Utility to analyze .obj files, to measure size of some of the functions in exact bytes?
I needed to look-up the exact byte size of few C functions.
Any recommendation of any utility which is able to analyze .obj files generated by the gcc compiler?
0
votes
1answer
150 views
Cannot link streams code with gcc
I have a problem compiling the following code:
// writing on a text file
#include <iostream>
#include <fstream>
using namespace std;
int main () {
ofstream myfile ("example.txt");
if ...