1
vote
0answers
31 views

Web Essentials LESS Compiler gives no Error Messages

With Visual Studio 2012 Update 2, Web Essentials 2.7. Suppose there is an error in LESS. When saving the file, a message is shown in the preview pane. It reads... /* Compile Error. See error list ...
0
votes
1answer
132 views

Error in C compiler but not in c++ compiler

int a=5; ++a=a; Please find the above code segment. The code is ok for the c++(g++) compiler but shows error while using c (gcc) compiler. May I know the reason for this? The error in c compiler is ...
1
vote
0answers
22 views

Android Java compiler error (compiling old files?!)

I refactored some packages in my IDE and everything seems to be ok. But when I compile my app I get an error that file x.java can't be read in x.java. Both files are located in the old packages which ...
0
votes
1answer
24 views

How to fix Error “A conflict exists with definition * in namespace public.” using ASC2.0?

In a class hierarchy where: MngLayers extends Manager_Panel, which extends Manager_Base... -- In Manager_Base, I've defined an init() method: public class Manager_Base { //.... public ...
0
votes
0answers
40 views

IntelliJ not working with Java?

Recently, I downloaded and installed IntelliJ to try it out. It seems like a nice interface, and I really want to try it out, but it doesn't seem to be working with my JDK. I gave it the following ...
0
votes
1answer
43 views

Java Noughts And Crosses game won't run as .jar [closed]

I've been following a tutorial online to make a Noughts and crosses game, it compiles successfully when I run it in Eclipse but when I export it as a runnable .jar file it doesn't show the O or X like ...
1
vote
1answer
48 views

Intel C++ compiler and cannot open stdarg.h on OS X

OS X 10.6.8, XCode 3.2.6, Base SDK 10.5, Intel Compiler 11.1 I am getting a weird message when I try to compile that says: catastrophic error: could not open source file "stdarg.h" I am using a ...
0
votes
0answers
33 views

compile Cuda including hdf5lib

At the moment i try to write a makefile for windows for my program. I want to compile it in the cmd on an arbitary system (which must have the cuda and hdf5 libraries...) In linux I got the right ...
1
vote
1answer
74 views

C++ : Undefined symbols for architecture x86_64 on MacOS Mountain Lion

Ok, I just switched to MacOS after a while of Windows/Linux coexistence. I open a simple text editor, write a simple program just to check if everything is all right. I know there are other threads ...
0
votes
0answers
60 views

c++ opencv , compiling a simple prog

I got many problems while trying to compile a little program with OpenCV. Now after hours of google I try to compile with the following command: gcc peas.sample.cc `pkg-config --cflags --libs ...
1
vote
1answer
31 views

undefined reference to ruserok error

I've run into a strange "undefined reference to" compile error that I cannot seem to find a resolution for. I'm trying to configure/compile PAM 1.1.6 for my Gumstix Overo using the Yocto Project ...
0
votes
0answers
57 views

MySQL Configuration Options with BIND DLZ Compilation

The MySQL driver documentation on http://bind-dlz.sourceforge.net/mysql_driver.html says to set the configure script to search in the normal locations for the MySQL headers and libraries, by appending ...
0
votes
2answers
44 views

Why does the compiler not give an error when making a “bad” cast?

Consider following Java classes: public class Animal { public static void printText(Object obj) { System.out.println(obj.toString()); } } class Tiger extends Animal { // Contains ...
1
vote
4answers
121 views

Generate a Guid on compile time

I am trying to generate a constant value that I will be using like following: public class Foo() { public const String ExtensionKey = Guid.NewGuid().ToString(); public int ID { get; set; } } ...
1
vote
0answers
153 views

C++ with Mysql - Compiler Warnings “ warning C4251”

I am currently trying to learn C++ programming with MYSQL connection so you could call me "novice" in C++ programming. I will go directly to the point: I am getting 4 Warnings when I compile (and the ...
0
votes
1answer
457 views

Less does not compile files with Twitter Bootstrap

I am having weird issues working with less files and Twitter Bootstrap: I have already had a deep investigation but i am still facing the problems. I have downloaded the last versions of less and ...
-1
votes
1answer
44 views

Flex compiler shows error multiple times [closed]

I have a adobe flex 4.6-project including some libraries (precompiled swc's, one of it has a linked sources directory). No other external resources are used. In Flashbuilder 4.6 i receive errors 3 ...
0
votes
0answers
171 views

Error while compiling files under certain matlab's folder using matlab r2009a's mex compiler:Why?

I've copied xpcblocks directory from C:\Program Files (x86)\MATLAB\R2009a\toolbox\rtw\targets\xpc\target\build\xpcblocks to desktop(including all sub-folders and files) and want to rebuild all the ...
4
votes
1answer
122 views

VB6 Application Compiles when there is an Error

I have a VB6 project that currently Compiles even though I am accessing a Property that does not exist. The code looks a bit like this: Public vizSvrEmp As VizualServer.Employees Set vizSvrEmp = New ...
1
vote
1answer
82 views

directxtutorial.com tutorial wont compile in g++

I am hoping that there is just come compiler settings I can adjust somewhere. I try to complie the source code here: http://www.directxtutorial.com/Lesson.aspx?lessonid=9-4-1 It will compile in ...
1
vote
3answers
202 views

gcc compiler not stop on first error

How does one get gcc to not stop compiling after the first error. Is there a compiler flag that will do this? Basically I'm wanting to remove a class, but i'm not sure how much of an impact that ...
0
votes
2answers
493 views

Strange “cannot find symbol” error (Compiling package from Terminal)

First of all: I've read through all the cannot find symbol threads I could find here. None of them solved the problem I'm facing. I'm not a professional Java Developer and I'm just helping out a ...
0
votes
1answer
51 views

linking not done issue in flex

I am trying to make an object file via "cc -c -o " but I get the following statement ,what should I do to solve this,thanks in advance ~/hedor1>lex -t example.l > example.c ~/hedor1>cc -c -o ...
0
votes
2answers
163 views

Flex compiling error

I'm trying to describe grammar for toy language. Here is the contents of tokens.lex: /* Simple scanner for a toy language */ %{ /* need this for the call to atof() below */ #include <string.h> ...
0
votes
1answer
194 views

Failure when using ILASM to compile IL to EXE

I've spent hours trying to figure out what is wrong. I know the program is functional, as I tested by debugging the .il in MonoDevelop, however I can't compile through that. This is the log from the ...
0
votes
2answers
279 views

macro passed 2 arguments, but takes just 1

my code didn't build successfully with this error message: macro "hton_us" passed 2 arguments, but takes just 1 and it occurs on this line: hton_us( &fi.size, 1 ); here is the refrence to ...
0
votes
0answers
31 views

How Do I create a new state in jFlex?

I'm working on matching my string literals. I decided to go with state's for handling the string literals. But that doesn't seems to be working. First I created the state : %state STRINGS Then in ...
0
votes
1answer
166 views

Solaris 5-10 CC Compiler missing symbols bug causes link failure [duplicate]

Possible Duplicate: Solaris 10 CC Preprocessor bug causes undefined symbols My apologies if this question posting looks familiar. I posted this issue yesterday here: Solaris 10 CC ...
0
votes
1answer
57 views

C++ template method definition not matched in class

I'm having trouble putting the definition of a template method outside of its class. Consider the following code that comes from a .h file (stripped the non-essential code to understand the issue): ...
0
votes
1answer
768 views

problems with creating an exe file in matlab

this is the session of building exe file in matlab 7.1. I think I have a problem with the compiler. mbuild -setup Please choose your compiler for building standalone MATLAB applications: Would ...
4
votes
1answer
626 views

Java Compiler error puzzler: “inner classes cannot have static declarations” - except for simple types

While coding, I have encountered a strange Java Compiler behavior. When compiling the class (source below), the compiler emits an error ("inner classes cannot have static declarations") on the NULL ...
3
votes
2answers
77 views

C# Why does calling an interface member from a class generate an error?

So I have an interface: interface IFoo { int Bar(); int this[int i] {get; set;} } And a class that derives from it class Foo : IFoo { public int IFoo.Bar() { ...
0
votes
1answer
131 views

compiler error : wasted space

Aat the end of compiling a project, I got this weird compiler error: "llvm_transformed_context_ini.c", line 3198: warning: loop not entered at top "llvm_transformed_context_ini.c", line 3218: ...
-1
votes
2answers
49 views

arrays declaration and addressing

I have a few straightforward questions:- Is the following correct according to a normal c++ compiler? int arr[3][4]; void func(int *a, int m, int n) { int i,j; cin>>i>>j; ...
1
vote
1answer
116 views

If have I encounter an internal compiler error only in release configuration what can I look at to fix this?

I am using Visual Studio 2010. The C1001 error (internal compiler error) only occurs in the release configuration. Debug compiles fine. In this case, what should I be looking at to prevent this from ...
0
votes
1answer
288 views

Less Strict CodeDomProvider for Compiling DLLs

Is there a way to have a less-strict compilation with a CodeDomProvider? I am trying to compile and load dll files into my already running program by using: public static String Compile(string ...
2
votes
1answer
2k views

CMAKE, Clang and C++v11 on OS X 10.8

OS X 1.8 CMAKE 2.8.9 Clang $ clang -v Apple clang version 4.0 (tags/Apple/clang-421.10.60) (based on LLVM 3.1svn) Target: x86_64-apple-darwin12.0.0 Thread model: posix CMAKELists.txt: ...
4
votes
3answers
109 views

Dynamically create compiler error based on API usage?

Did not know how to search for an answer to this, but I am wondering if there is a way in a compiled language such as Java, C#, Scala etc... To force a compiler error where an API is used incorrectly. ...
0
votes
2answers
115 views

Undefined Reference? But I've already implemented the function

display.h #ifndef PRO_DISPLAY_H #define PRO_DISPLAY_H /** Initializes the display **/ int pro_display_init(void); #endif /* PRO_DISPLAY_H */ display.c #include "main.h" static int height_ = ...
1
vote
3answers
102 views

Why are newer languages able to show better and more precise error messages? [closed]

Why and how are languages such as Python or Java able to show precise and easy to understand error messages, while the true and tested long-standing C/C++ compilers show cryptic, and often unrelated, ...
0
votes
2answers
136 views

libgomp missing: install c++ compiler in home directory?

I am working on a machine with Linux version 2.6.16.46-0.12-smp (geeko@buildhost) (gcc version 4.1.2 20070115 (prerelease) (SUSE Linux)) #1 SMP Thu May 17 14:00:09 UTC 2007 and I don't have root ...
136
votes
7answers
4k views

Why can I pass 1 as a short, but not the int variable i?

Why does the first and second Write work but not the last? Is there a way I can allow all 3 of them and detect if it was 1, (int)1 or i passed in? And really why is one allowed but the last? The ...
1
vote
1answer
173 views

Unable to include a manifest in my dynamically compiled c# app

I was just tasked with upgrading an internal enterprise web application. The user enters some data, and the web app then compiles a custom winforms EXE (self-extractor/installer type of app), and then ...
1
vote
0answers
104 views

C++ - modern portability guide [closed]

There is "C++ portability guide" written by David Williams in 1998: http://www.angelfire.com/country/aldev0/cpphowto/cpp_PortabilityGuide.html Since then C++ standard was evolved, new compilers ...
1
vote
1answer
83 views

Contract.Assert do not throw compilation error

I am trying to add validation for my type at compilation time using Contract but unfortunately it do not work. For example code below do not give compiler error while compiling project. Should I ...
5
votes
4answers
149 views

How to circumvent the size limit of a static initialiser in Java when initialising large amounts of constants

I have a class holding a large a mount of generated constants as such: public class Constants extends SomeBaseClass { // init() is defined in some base class... public static final XXX KEY1 = ...
1
vote
1answer
41 views

xcode not pre-filling for me

I've just noticed that xcode is no longer prefilling for me. For instance I want to write CGRectMake (self.frame.size.width, ...); Xcode is not prefilling the .frame and so on. Not only this but if ...
-1
votes
3answers
918 views

How to recompile with -Xlint:unchecked?

I keep getting this message in BlueJ/Java. http://cache.gyazo.com/19c325e77bbc120892d1035dcfda5377.png I know there are several other questions like this already on StackOverflow, but none of the ...
0
votes
1answer
815 views

glGetShaderiv() GL_COMPILE_STATUS returning GL_FALSE

I tried opening a Visual Studio project on another computer. Im not sure if this is relevant or not but originally I was having issues finding a MSAA pixel format until i changed the WGL_SAMPLES_ARB ...
0
votes
3answers
269 views

Inaccessible object when compiling code

I want to compile the Rigi source code but I get some error while compiling: adt/object.h: At global scope: adt/object.h:35:18: error: ‘class RigiObject RigiObject::RigiObject’ is inaccessible ...

1 2 3