Tagged Questions

0
votes
5answers
120 views

Disabling NUL-termination of strings in GCC

Is it possible to globally disable NUL-terminated strings in GCC? I am using my own string library, and I have absolutely no need for the final NUL characters as it already stores …
1
vote
3answers
66 views

C -multidimensional array causes Segmentation Fault (GCC)

Why if I change the size of one of the dimensionality of an array I get a run-time Error: "Segmentation Fault?". Example: #include <stdio.h> #define DIM 8 int main(int argc …
1
vote
2answers
33 views

C - How to access elements of vector using GCC SSE vector extension (very hard question for GCC experts)

Usually I work with 3D vectors using following types: typedef vec3_t float[3]; initializing vectors using smth. like: vec3_t x_basis = {1.0, 0.0, 0.0}; vec3_t y_basis = {0.0, 1 …
0
votes
1answer
40 views

gccgo linking Error in Ubuntu 9.10 karmic ?

Hi I am trying to compile go file using gccgo , i installed on my ubuntu 9.10 machine . when i compiled $gccgo -c hello.go hello.o file is generated , while trying to link an …
6
votes
6answers
164 views

GCC memory leak detection equivalent to Microsoft crtdbg.h?

After many years of working on a general-purpose C++ library using the Microsoft MSVC compiler in Visual Studio, we are now porting it to Linux/Mac OS X (pray for us). I have becom …
0
votes
2answers
79 views

Ignore “initialization from incompatible pointer type” warnings?

Is there a compiler directive in order to ignore the "initialization from incompatible pointer type" warnings in Hardware_MouseDrivers_GPM_Methods and Hardware_MouseDrivers_DevInpu …
2
votes
1answer
58 views

How to combine shared libraries?

I've got some .so libraries that I'd like to combine into one shared library so that it doesn't depend on the original .so files anymore. The .so files have dependencies to each o …
0
votes
2answers
46 views

compiler versions

I have some guys here who have code that needs to be compiled with gcc-3.3. We have a CentOS 5.2. When we compile it with their make files, it fails during the link and they say …
4
votes
4answers
95 views

Does GCC’s __attribute__((__packed__))…?

Purpose I am writing a network program in C (specifically gnu89) and I would like to simplify things by reinterpreting a certain struct X as big array of bytes (a.k.a. char), send …
1
vote
1answer
24 views

Precompiled headers and compiling universal objects on OSX

We are using precompiled headers with GCC for our project and build them like this: gcc $(CFLAGS) precompiledcommonlib.h Now I'm building the project on OSX 10.6 and trying to u …
2
votes
2answers
49 views

XCode and the iPhone SDK: C++ Standard Library Type?

Because I'm a novice to all things C++ and gcc related I need to understand something that's potentially critical. If I use .mm files in a new iphone project whose output is a stat …
0
votes
1answer
15 views

How to use the -MG flag in cc 4.4.1?

I've recently upgraded my Ubuntu installation from Jaunty to Karmic. This apparently includes an update of the GNU C compiler, because code that compiled previously no longer does. …
1
vote
4answers
72 views

Compile C++ with Cygwin

How do I compile my C++ programs in Cygwin. I have gcc installed. What command should I use? Also, how do I run my console application when it is in a .cpp extension. I am trying t …
1
vote
1answer
13 views

gcov creates .gcov files in the current directory. Is ther any way to change this?

I'm running gcov/gcc 4.1.2 on RHEL. When I want to specify a directory for the gcov files. Any ideas on how to do this?
0
votes
1answer
29 views

Apple’s gcc, what’s the difference between -arch i386 and -m32 ?

According to Apple's gcc 4.2.1 doc: -arch arch Compile for the specified target architecture arch. The allowable values are 'i386', 'x86_64', 'ppc' and 'ppc64'. Multipl …

1 2 3 4 5 55 next
15 30 50 per page