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

learn more… | top users | synonyms (5)

0
votes
0answers
7 views

Makefile seemingly ignoring %.o wildcard

I am currently trying to compile the Julia Language interpreter on Snow Leopard—it has been giving me a heck of a time, but I think that I almost have got it down. The latest hurdle has been the ...
1
vote
0answers
14 views

android-maven-plugin Error on Build

i need to build an android project using maven, i have managed to configure everything but i guess this is something missing as i encounter this issue: [INFO] ...
0
votes
0answers
14 views

composer error : 'does not contain valid JS'

i am tryiing to install zendframework2 via Composer on my command line. the composer command is (taken from Zendframwork page; php composer.phar create-project ...
0
votes
0answers
51 views

Mono FSharpC error with Type Provider

I have this code in Yoghurt.Fruit.fs module Yoghurt.Fruit open FSharp.Data type Fruit = JsonProvider<"fruit.json"> let fruit = Fruit.Load("fruit.json") let fruitExists name = fruit.Callouts ...
0
votes
1answer
24 views

syntax error while compiling sqlite

I'm trying to make a new table for my database with sqlite: String CREATE_ARCHIVE_TABLE = "CREATE TABLE {0} ({1} INTEGER PRIMARY KEY AUTOINCREMENT," + " {2} TEXT NOT NULL, {3} TEXT NOT NULL, {4} ...
2
votes
4answers
97 views

Can Someone Explain The Linkage Concept in C in Detail

I have following C program: #include<stdio.h> static void p(void); static int c; int main(int argc,char **argv) { p(); printf("%d",c); return 0; } void p(void) { ...
0
votes
3answers
25 views

Understanding Xcode build error [duplicate]

Solution: so Mopub's instructions don't mention that EventKit and EventKitUI are required. Adding these in addition to the frameworks mentioned by MoPub got the project to build. Update: MoPub's ...
0
votes
3answers
25 views

Why am I getting an error with gcc but not with g++ in Linux

The line of code below is giving an error with the gcc compiler even when this file is saved as check.c. The error is at the line void swap_address(int& a, int& b) as error: expected ‘;’, ‘,’ ...
1
vote
1answer
27 views

why -Werror cause configure error

I want build nginx from source. so I write a bash script to do this: #!/bin/bash export LD_LIBRARY_PATH="/usr/lib64:$LD_LIBRARY_PATH" dir=$(realpath `dirname $BASH_SOURCE`) cd $dir/modules for ...
0
votes
1answer
20 views

Error building program with MySQL Connector C++

I have the following compile time error I cannot find the reason of: fatal error: mysql_connection.h: No such file or directory I am using cmake, and these are the CMakeLists.txt files: # Top ...
3
votes
4answers
76 views

Why doesnt this code compile?

I got a situation like this: struct Foo { void Barry() { } }; struct Bar : private Foo { template <class F> void Bleh(F Func) { Func(); } }; struct Fooey : public Bar { void ...
-1
votes
0answers
7 views

code::blocks 12.11 : how do I compile and run will windows visual?

So I use windows c++ visual and got the compiler to work with no errors but wen I try to run a program I wrote it says "A build path has not been made would you like to make one now?" So I cick yes ...
0
votes
0answers
11 views

InstallShield LE doesn't compile migrated setup

I migrated my installation project (vdproj) from VS 2010 to Installshield LE on VS 2012. The migration passed all the project outputs to the new project, but it didn't detect the dependencies ...
-2
votes
0answers
22 views

How floating point is implemented in C? What all operations can't be performed directly with a 'real number'?

I don't understand How floating point is implemented in C? What all operations can't be performed directly with a 'real number'? what all cased could be possible when an error occurs due to float / ...
1
vote
2answers
57 views

Can someone explain the error?

I have a C program below and in function func there are two for loops. In the first for loop, while incrementing the array variable a there is no 'lvalue required' error but while incrementing array ...

1 2 3 4 5 314
15 30 50 per page