Top "Compiler-errors" questions

An error that is generated during the compilation phase, often due to problems with invalid syntax and/or types.

Fortran 90 compiling issue: undefined reference to <modulename>

I'm having trouble trying to compile a simple fortran program which uses a module in the same directory. I have 2 …

module compiler-errors fortran fortran90
Recommended gcc warning options for C

Other than -Wall what other warnings have people found useful? http://gcc.gnu.org/onlinedocs/gcc-4.3.2/gcc/Warning-Options.html

c gcc compiler-errors
Error: C++ requires a type specifier for all declarations

I'm new to C++ and I've been reading this book. I read a few chapters and I thought of my …

c++ compiler-errors codeblocks specifier
Cannot compile simple c++ program in Ubuntu

I tried to build a simple program in the terminal. #include <stdio.h> #include <stdlib.h> …

c++ compiler-errors ubuntu-11.10
error: A label can only be part of a statement

I'm writing a brainfuck interpreter in C, and I'm having a little bit of trouble with the use of somethings …

c pointers gcc compiler-errors getchar
fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'AMD64'

I am using VS 2003 .Net on 32 bit XP OS. I have also installed "Microsoft Platform SDK" on my machine. Can …

visual-c++ configuration compiler-errors project-files
Could not write to output file -- Access is denied

I recently switched computers and copied all my projects over to my new local drive. I reformatted the computer I'm …

c# visual-studio-2012 permissions compiler-errors windows-7-x64
Undefined reference to symbol 'pthread_create@@GLIBC_2.2.5'

I just pulled a git repository in which me and my friends are developing an application. When I am running …

c++ compiler-errors makefile ubuntu-15.04
What's the purpose of ini_set() in php? (especially for error reporting)

Ok so PHP has the function ini_set() which a lot of people are aware of and will use to …

php compiler-errors ini
Cannot modify char array

Consider the following code. char message[]="foo"; void main(void){ message[] = "bar"; } Why is there a syntax error in MPLAB …

c arrays memory-management compiler-errors mplab