Sure, find where -Werror is set and remove that flag. Then warnings will be only warnings.
Related Contents:
- How to disable GCC warnings for a few lines of code
- Can GCC not complain about undefined references?
- assert() with message
- Modulo operation with negative numbers
- typedef fixed length array
- Realistic usage of the C99 ‘restrict’ keyword?
- Build .so file from .c file using gcc command line
- Can’t compile C program on a Mac after upgrade to Mojave
- What is the advantage of GCC’s __builtin_expect in if else statements?
- What are the useful GCC flags for C?
- warning: incompatible implicit declaration of built-in function ‘xyz’
- What is the meaning of “__attribute__((packed, aligned(4))) “
- How can I tell gcc not to inline a function?
- How do I make a simple makefile for gcc on Linux?
- Undefined reference to `pow’ and `floor’
- Why do I get “a label can only be part of a statement and a declaration is not a statement” if I have a variable that is initialized after a label? [duplicate]
- error: unknown type name ‘bool’
- Why do I get a warning every time I use malloc?
- What does -D_XOPEN_SOURCE do/mean?
- Ask GDB to list all functions in a program
- Why don’t two binaries of programs with only comments changed exactly match in gcc?
- How can I use “sizeof” in a preprocessor macro?
- Can’t compile a C program on a Mac after upgrading to Catalina 10.15
- How to disable compiler optimizations in gcc?
- What is a file with extension .a?
- Conflict between a Stanford tutorial and GCC
- How to add multiple header include and library directories to the search path in a single gcc command?
- How to prevent GCC from optimizing out a busy wait loop?
- Compiling without libc
- Check glibc version for a particular gcc compiler
- What does this GCC error “… relocation truncated to fit…” mean?
- What is the meaning of lines starting with a hash sign and number like ‘# 1 “a.c”‘ in the gcc preprocessor output?
- printf and long double
- Can I use Intel syntax of x86 assembly with GCC?
- Hide password input on terminal
- How do I link object files in C? Fails with “Undefined symbols for architecture x86_64”
- Undefined reference to main – collect2: ld returned 1 exit status
- How to check if a given file descriptor stored in a variable is still valid?
- A simple explanation of what is MinGW
- Why is the maximum size of an array “too large”?
- What is the difference between ‘asm’, ‘__asm’ and ‘__asm__’?
- What does __VA_ARGS__ in a macro mean?
- How do I print uint32_t and uint16_t variables’ value?
- Why is scanf() causing infinite loop in this code?
- Getting started with Intel x86 SSE SIMD instructions
- __attribute__((const)) vs __attribute__((pure)) in GNU C
- Is there a way to get warned about unused functions?
- Running gcc’s steps manually, compiling, assembling, linking
- Merge multiple .so shared libraries
- Why do I have to define LD_LIBRARY_PATH with an export every time I run my application?