An error that is generated during the compilation phase, often due to problems with invalid syntax and/or types. Compare to [runtime-error].
0
votes
3answers
31 views
Errors while integrating Funambol SDK into my iOS app
I have an application in which i am integrating funambol sdk. When i build the code, there is an error No such file or directory. I had add these files to xcode, but still it shows as file missing ...
3
votes
1answer
15 views
Visual Studio: Compiler Warnings and errors appear twice in different languages
I have the weird case that in some of my Visual Studio projects the warnings and errors appear multiple times: In my case, one time in english and one time in German.
Does anyone know what ...
0
votes
1answer
40 views
Apple LLVM Compiler 4.2 Error exit code 1
This has been asked a lot of times, but I can't find a solution for my problem. This is the error i get:
clang: error: no input files
Command ...
4
votes
2answers
55 views
identifier “ostream” is undefined error [closed]
i need to implement a number class that support operator << for output.
i have an error: "identifier "ostream" is undefined" from some reason eventhough i included and try also
here the ...
5
votes
4answers
7k views
request.getServletContext() not found, even with new JAR
My compiler is not able to find the HttpServletRequest getServletContext() method.
I am not doing anything too complicated:
public static void setMySortedSet(HttpServletRequest request, ...
0
votes
2answers
25 views
Breakout game in AS3 error #2007
I came upon an error I can't fix. I'm making a game and it should say "you lose" after losing your 3 lives, but in my case everything freezes and I get an error.
TypeError: Error #2007: Parameter ...
-3
votes
1answer
43 views
Compiler error: std::basic_ios<_Elem, _Traits>::basic_ios(const std::basic_ios<_Elem, _Traits>::_Myt &)
Anyone come across this error before? I'm at a loss to what precisely could be causing this:
1>...include\sstream(640): error : "std::basic_ios<_Elem, _Traits>::basic_ios(const ...
0
votes
2answers
4k views
unsatisfied forward or external declaration
I am getting an error while compiling .pas file.
"unsatisfied forward or external declaration :TxxxException.CheckSchemeFinMethodDAException."
Does anyone have any idea what this error implies?
...
0
votes
1answer
25 views
Error building Setup
I am building a setup in VS2008 C#.
When build is clicked WARNING: Unable to copy the schema file '(null)' message .
I have VS2008 + VS 2010 installed. Both were working fine.
For some reason it is ...
0
votes
1answer
21 views
nvcc fatal: A single input file is required for a non-link phase when an outputfile is specified
I'm getting this problem with Nsight Eclipse. I just installed my Cuda Toolkit 5.0 I have a project which uses several C files and one Cuda file.
I read that sometimes the problem arises when you use ...
0
votes
0answers
8 views
Java compilation error for TPC-W Benchmark
I am following the guide given here to install and run the tcp-w benchmark. However, I am facing some java compilation issues.
At the very last step, when I do
javac rbe/*
I get the error:
...
1
vote
4answers
4k views
Resolving “only static const integral data members can be initialized within a class” compilation error
The following for creating a Global Object is resulting in compilation errors.
#include "stdafx.h"
#include <iostream>
using namespace System;
using namespace std;
#pragma hdrstop
...
1
vote
2answers
19 views
Compiler isn't handling freertos #define code
I'm just trying to load the demo code into my RX62N, but the code doesn't compile. I get a lot of errors exactly like this one.
Error[Pe125]: expected a "(" C:\FreeRTOSV7.4.2\FreeRTOS\Source\queue.c ...
0
votes
1answer
27 views
Compilation error with makefile and gtk+
I have a big problem with gtk+
When i compile with my makefile, i have :
gcc Affichage.c -W -Wall `pkg-config --cflags --libs gtk+-2.0`
...
0
votes
1answer
21 views
I'm trying to write a shell command to find and compile all C programs
I'm trying to write a shell command to find and compile all C programs
find . -type f -name '*.c' -exec sh -c 'gcc {} -o $(dirname {})/$(basename {} .c)' \;
Is what I have now, and it actually ...