Top "Compiler-errors" questions

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

The located assembly's manifest definition does not match the assembly reference

I am trying to run some unit tests in a C# Windows Forms application (Visual Studio 2005), and I get the …

c# reference compiler-errors dependencies version
What does a "Cannot find symbol" or "Cannot resolve symbol" error mean?

Please explain the following about "Cannot find symbol", "Cannot resolve symbol" or "Symbol not found" errors: What do they mean? …

java compiler-errors cannot-find-symbol
R cannot be resolved - Android error

I just downloaded and installed the new Android SDK. I wanted to create a simple application to test drive it. …

android eclipse compiler-errors android-resources android-sdk-tools
Could not load file or assembly or one of its dependencies

I'm having another of these "Could not load file or assembly or one of its dependencies" problems. Additional information: Could …

c# .net reference compiler-errors
Non-static variable cannot be referenced from a static context

I've written this test code: class MyProgram { int count = 0; public static void main(String[] args) { System.out.println(count); } } But …

java variables compiler-errors non-static
What does "collect2: error: ld returned 1 exit status" mean?

I see the error collect2: error: ld returned 1 exit status very often. For example, I was executing the following snippet …

c compiler-errors
libpthread.so.0: error adding symbols: DSO missing from command line

When I'm compiling openvswitch-1.5.0, I've encountered the following compile error: gcc -Wstrict-prototypes -Wall -Wno-sign-compare -Wpointer-arith -Wdeclaration-after-statement -Wformat-security -Wswitch-enum -Wunused-parameter -Wstrict-aliasing …

gcc compiler-errors linker undefined-reference
no acceptable C compiler found in $PATH when installing python

I'm trying to install new python environment on my shared hosting. I follow the steps written in this post: mkdir ~/…

python compiler-errors virtualenv
How do I concatenate multiple C++ strings on one line?

C# has a syntax feature where you can concatenate many data types together on 1 line. string s = new String(); s += "…

c++ string compiler-errors concatenation
Cannot make a static reference to the non-static method

Building a multi-language application in Java. Getting an error when inserting String value from R.string resource XML file: public …

java compiler-errors static-methods