GCC is the GNU Compiler Collection, encompassing the gcc C compiler and the g++ C++ compiler, among others. It has powerful warning facilities that can reveal coding errors in C and C++ code.

learn more… | top users | synonyms

0
votes
1answer
34 views

<built-in>:1:2: warning: use of C++0x long long integer constant [-Wlong-long]

What is this warning about? It seems to be warning about long long constants in built ins. This is from GCC version 4.7.3 (Ubuntu/Linaro 4.7.3-1ubuntu1). In file included from ...
0
votes
0answers
11 views

Error: variable has initializer but incomplete type

#define SHMKEY ((long)12344) #define SEMKEY ((long)12345) #define MAXS 10000 #define MAXL 1000 typedef struct{ int lung;`` int i; char s[MAXS]; }Mesaj; #define PLUS (sizeof(int)) ...
1
vote
1answer
49 views

Making “warning: array 'foo' assumed to have one element” an error

I accidentally declared an array without a length by writing enum foo bar[];, and gcc gave me the warning "array 'bar' assumed to have one element". Is there any way to make gcc turn this into an ...
2
votes
5answers
81 views

How to initialise a C struct without generating warnings when compiling with the GCC “-Wextra” option?

#include <stdio.h> #include <string.h> typedef struct STest { unsigned int uiRoll; unsigned short usiVal; } TTest; int main() { TTest oTest = {0}; /* Initialize the Values with 0 ...
0
votes
1answer
51 views

warning: deprecated conversion from string constant to ‘char*’

I have the warnings from the gcc compiler showing the const char issue. How to get rid of the warnings? Thanks, Michael char * str_convert(int op) { /*returns the string corresponding to an ...
0
votes
1answer
108 views

warning: format ‘%d’ expects type ‘int’, but argument 4 has type ‘size_t’

I followed some similar posts to modify the code, however the warnings are still generated. $ g++ ncfile.c -o ncfile -g -lnetcdf ncfile.c: In function ‘int main(int, char**)’: ncfile.c:363: warning: ...
0
votes
0answers
17 views

gcc: Suppressing a subset of variable shadowing warnings

In our code, we have a lot of shadowing between member variables and local variables. For better or worse, we do not consider these dangerous and do not want to put in the effort to remove the ...
7
votes
3answers
170 views

Why does std::abs return signed types

I'm getting warning for signed vs. unsigned comparison when I'm comparing a std::abs(int) against an unsigned. And indeed, std::abs returns signed values. Why was that choice made? It would have ...
1
vote
1answer
56 views

Boost.Regex with icu/unicode support

How to build Boost.Regex with icu/ unicode support? My compiler is GCC, and IDE is Eclipse C++. How to configure binary files with Eclipse? I tried to do this "bjam --sHAVE_ICU=1 toolset=gcc". But it ...
0
votes
1answer
21 views

GCC 4.6.2 error: conflicting types for ‘psignal’

I'm trying to install gcc-4.6.2 on a node of a cluster. Unfortunatelly this node doesn't have an internet connection so I'm tryng to do everything manually. I've installed all the required packages ...
1
vote
1answer
70 views

Link Mosquitto with gcc on OSX

I am new to Mosquitto and I am tying to write a simple C client connecting to Mosquitto's test server: http://test.mosquitto.org/ Here is the code of the simple C client which is 99.9% of an example ...
1
vote
2answers
76 views

How to let GCC warn unmatched number of arguments when making function calls?

I just debugged a C program for a long time, only to find that I missed an argument when making a function call, so junk instead filled the missing argument. Stupid mistakes like this are really ...
1
vote
1answer
313 views

function declared static but never defined

I have a header file suppose abc.h, where i have function declaration as: static int function1(); I have included this header file in abc.c and has defined the function and used it. static int ...
4
votes
4answers
71 views

How do I initialize all fields of a structure when one of the fields is an array?

#include <stdio.h> typedef struct { int as; int bs; int cs; }asd_t; typedef struct { asd_t asd[10]; }asd_field_t; typedef struct { int a; int b; asd_field_t ...
1
vote
3answers
119 views

how to print struct timeVal

i have this line in my code `printf("Rcvd pkt from %s:%d at <%ld.%06ld>\n", inet_ntoa(servAddr.sin_addr), ntohs(servAddr.sin_port), timeVal.tv_sec, timeVal.tv_usec);` this is the warning i ...
0
votes
2answers
141 views

strange compiler warnings of C++11 Type checking code

I'm writing a generic adder with carry/overflow check and I make heavy use of c++11 type check features. this is my code: #include <iostream> using namespace std; #define MIN_OF(TYPE) ( ...
0
votes
0answers
30 views

Readlink failed

If I type gcc -Wall -pedantic -o listexe listexe.c I get: warning: variable ‘lung’ set but not used [-Wunused-but-set-variable] and all the program won't run like the way I want. I ...
10
votes
3answers
170 views

Have compiler check the number of array initializers

Initializing an array (in C++, but any solution which works for C will likely work here as well) with less initializers than it has elements is perfectly legal: int array[10] = { 1, 2, 3 }; ...
0
votes
5answers
139 views

C++, copy constructor confusion

say I created a custom Array class and have following constructor: Array::Array(size_t size) { mySize = size; //myData is of type int* myData = new int[mySize]; // this ...
3
votes
2answers
58 views

How to solve the mess information in gcc warning

I compiled my porject on a 64-bit linux(2.6.39-gentoo-r3),GCC version 4.6.3 but when I do compiling , the warnings contain some unreadable characters.Just like below: warning: field precision ...
2
votes
0answers
70 views

Is there a compiler warning in gcc that will be more particular about mismatches between declaration and definition signatures?

I have a class that has a member function declaration: void doSomething(int a); and a function definition: void doSomething(int const a) { ... } As covered in Mismatch between constructor ...
2
votes
2answers
69 views

warning: non-constant array size in new, unable to verify length of initializer-list

I face a problem similar to this one. int j = 6; int *k = new int[j]{4}; The warning is : warning: non-constant array size in new, unable to verify length of initializer-list [enabled by default] ...
-1
votes
1answer
95 views

What causes compiler to warn for unused functions?

Simple setup: There are n prototypes for functions and implementations of the functions. There is one big array of function pointers. Each function is listed in this array. Some still cause ...
1
vote
2answers
120 views

g++ warning: will never be executed

Inherited a C++ project. I'm building in RHEL 5.5 with gcc 4.1.2 via a makefile. The project is huge (hundreds of files) and in general the code is pretty good. However, every so often during ...
2
votes
2answers
74 views

Why do some statements generate warnings in “Release” but not in “Debug” mode compilation with GCC?

I am using gcc to compile some C++ code, and while the code compiles fine when using "Debug" configuration, it emits warnings in "Release" configuration. The only difference in the compile options is: ...
1
vote
1answer
111 views

In a C program, getting warning: “Statement with no effect”

When I am trying to compile a particular program with -Wall, GCC is showing the warning as: expcal.c:66:5: warning: statement with no effect [-Wunused-value] this warning is referring the line: ...
1
vote
2answers
205 views

Suppress GCC warning “extra tokens at end of #include directive”

I'm writing a program in C intended to be compiled and run on a HP NonStop machine. However, I want to do the main development on my workstation running Linux. The HP NonStop C-Compiler requires ...
0
votes
1answer
92 views

Smashed Stack when iterating over int pointers

I'm fairly new to C, and I'm trying to write a utility to open all event handlers which handle EV_KEY events, and give me a list of their file descriptors (while they're still open). The function ...
4
votes
1answer
406 views

GCC -Wuninitialized / -Wmaybe-uninitialized issues

I am experiencing a very strange issue using gcc-4.7 (Ubuntu/Linaro 4.7.2-11precise2) 4.7.2. I am unable to compile the following valid code without a warning: extern void dostuff(void); int ...
3
votes
2answers
80 views

Confusion in regards to purpose/behavior of -Waggregate-return?

While looking at the GCC's warning options, I came across -Waggregate-return. -Waggregate-return Warn if any functions that return structures or unions are defined or called. (In languages ...
1
vote
1answer
81 views

Use of GCC's -Wpointer-arith

GCC documentation says -Wpointer-arith Warn about anything that depends on the "size of" a function type or of 'void'. GNU C assigns these types a size of 1, for convenience in calculations with ...
0
votes
0answers
66 views

Usecases for GCC Warning Options -Wno-sign-compare, -Wno-type-limits and -Wno-logical-op

I was deciding the compiler settings for my project that is built using MinGW. It appears that GCC has a really huge set of options for controlling the warnings. But what I did not understand is why ...
4
votes
2answers
483 views

What is &&&& operation in C [closed]

int main() { int i, c; i: for (i = 0; i < 3; i++) { c = i &&&& i; printf("%d\n", c); } return 0; } The output of ...
138
votes
2answers
4k views

What is &&& operation in C

#include <stdio.h> int main(void) { int i, c; for (i = 0; i < 3; i++) { c = i &&& i; printf("%d\n", c); } return 0; ...
4
votes
1answer
97 views

GCC warning about implicit dereference

I just ran across the following warning in GCC: warning: implicit dereference will not access object of type ‘volatile util::Yield’ in statement [enabled by default] while compiling this code: ...
2
votes
3answers
151 views

Strict aliasing rule, false positive or false negative?

I have a problem with strict aliasing in C. I'm using GCC 4.7.1. Example 1: When compiling this code with -fstrict-aliasing -Wstrict-aliasing=3 I get "warning: dereferencing type-punned pointer will ...
2
votes
1answer
2k views

warning: cast from pointer to integer of different size

I'm working on socket programming.. my code executes the way I want it to, I'm able to use it. BUT it gives me a warning on compilation. I compile using gcc server1.c -o server1 -lpthread And I ...
8
votes
3answers
367 views

How can I get rid of deprecated warnings in deprecated functions in GCC?

One way to implement deprecation warnings is to produce warnings on calls to deprecated functions, unless you are calling from a deprecated context. This way legacy code can call legacy code without ...
2
votes
1answer
1k views

gfortran: error trying to exec 'f951': execvp: No such file or directory

I'm trying to compile a code found on the internet. Actually I'm trying to compile the code found at http://www.cs.berkeley.edu/~fowlkes/BSE/. I tried to install gfortran and all the other libraries ...
4
votes
3answers
337 views

Prevent GCC warning “value computed is not used” for a macro

I'm working on a macro that will support error handling. #define Try(e, call) ( (e == OK) && ((e = call) != OK) ) It can be used as the expression of an if-statement: if (Try(err, ...
0
votes
2answers
182 views

Boost pretty print for GCC error messages

I'm using GCC 4.7.2. My code is rather heavy on template, STL and boost usage. When I compile and there is an error in some class or function that is derived from or uses some boost/STL functionality, ...
5
votes
1answer
78 views

Supress candidates suggested by GCC

I'm using gcc 4.7.2. My code is rather heavy on template and boost usage. When I compile and I've defined or used something ambiguous, I often get error messages that suggest two dozen candidates, ...
2
votes
1answer
212 views

Don't understand “assuming signed overflow” warning

I am getting warning: assuming signed overflow does not occur when assuming that (X + c) < X is always false [-Wstrict-overflow] on this line: if ( this->m_PositionIndex[in] < ...
0
votes
2answers
119 views

gcc - how to find path of header include file

Do we have any option in gcc to find from where a particular file header is included. I have the following scenario : file_1.h : declare type of type_1 file_2.h : type_1 var; I want to check where ...
1
vote
1answer
638 views

stm32f4 - discovery - Using the armcc compiler and setting include paths

So, im trying to build my self a program that will compile all my code and stuff in windows with gcc. (to use it with visual studio). it have gone pretty good until now, when i have a include. the ...
1
vote
1answer
138 views

Casting result from random() to int causes GCC to say “warning: implicit function definition”. Why? [duplicate]

Possible Duplicate: Why can’t gcc find the random() interface when -std=c99 is set? I'm new to C, so I just went into man stdlib.h, searched for "random", saw that random() returned long, ...
0
votes
1answer
68 views

how to make tshark executable

After downloading and extracting wireshark 1.7.1, I did a configure with gtk disabled. But then , I am unable to do "make" It throws the following error. cc1: warnings being treated as errors ...
2
votes
1answer
85 views

Make warning “makes pointer from integer without a cast” as error

I'm trying to make the warning " warning: passing argument 1 of ‘func’ makes pointer from integer without a cast" as an error, but can't find the name of the option. I've tried all warnings from gcc ...
0
votes
2answers
147 views

usage of strcpy in functions

#include<stdio.h> #include<stdlib.h> #include<ctype.h> #include<string.h> struct person *create_node(char *, char *,int); void addnode(char *,char *,int,struct person *); ...
9
votes
2answers
215 views

How to make gcc warn about returning the address of local variables?

With gcc 4.4.5, I have a warning with the following code. char *f(void) { char c; return &c; } But, when I use a temporary pointer, there is no warning anymore (even if the behavior is ...

1 2 3 4