A compiler is a program which translates one language into another. The tag [compiler] should be applied to questions concerning the programming of compilers or for questions about the detailed inner workings of compilers. Don't use [compiler] for questions about options and settings for a ...

learn more… | top users | synonyms (2)

5
votes
2answers
178 views

Translating Shakespeare Programming Language

I am trying to translate my .spl file into a C file (because there is no compiler). I have an example "Hello World" .spl file, and I have downloaded the Shakespeare Programming Language .tar and ...
2
votes
3answers
112 views

Unexpected global variable read result in C++ using avr-gcc for (local variable access is as expected)

I am getting unexpected global variable read results when compiling the following code in avr-gcc 4.6.2 for ATmega328: #include <avr/io.h> #include <util/delay.h> #define LED_PORT ...
9
votes
2answers
180 views

Representing a multiple pass Abstract Syntax Tree (AST) in C++?

I am currently exploring designing a compiler that transforms its AST in multiple stages. The idea is that starting from the parse tree, each pass transforms the tree until the resulting AST is ...
0
votes
1answer
79 views

error when trying to compile dex file [closed]

i was trying to compile a dex file and run it on android by following this tutorial. How to execute the dex file in android with command? but when i try to compile the dex file i got this error. ...
0
votes
1answer
116 views

Optimizing Three Address Code

I have the following three address code, where n is some external constant: x = 0 i = 0 L: t1 = i * 4 t2 = a[t1] t3 = i * 4 t4 = b[t3] t5 = t2 * t4 x = x + t5 i = i + 1 if ...
0
votes
1answer
18 views

how to make executable executing within one specific directory only (executable source code available)

how to prevent tool (executable) executing from any other directories except specified one? May edit tool source code and recompile it. Linux-based OS.
3
votes
1answer
63 views

How to can I programmatically edit a binary (x86)?

I'm working on a program to do post-compilation optimization. Because I've noticed there are a few special cases that gcc just doesn't optimize well, even at -O3. Is there a library that would allow ...
0
votes
1answer
48 views

Winsock Program in c language is not working

I've started another program to run Winsock in C language on Windows7. I found this help on msdn: http://msdn.microsoft.com/en-us/library/windows/desktop/ms737591%28v=vs.85%29.aspx This program is ...
0
votes
1answer
19 views

Kernel compiling - cross platform

Just a small clarification about compiling kernels (not that I'm doing any :P). What I know about compiling is that it is machine specific, although you can use a cross compiler to compile your work ...
1
vote
1answer
62 views

How to make lex/flex recognize tokens not separated by whitespace?

I'm taking a course in compiler construction, and my current assignment is to write the lexer for the language we're implementing. I can't figure out how to satisfy the requirement that the lexer must ...
0
votes
0answers
32 views

Valgrind with sfml

I am completely new to the use of Valgrind. Currently I have compiled an exe for the program to test on; however, the test brings up over 250k errors. This is the basic project made with a new sfml ...
0
votes
2answers
247 views

Run my application (created using Qt) without Qt

[ Solution ] I want to run my app created with QtSDK on a machine that does not have Qt installed. I tried to copy the DLL's from the BIN folder to the release of my project, but it did not work. I ...
0
votes
1answer
43 views

Conflict in grammar YACC/Bison

I have a YACC grammar for parsing expressions in C. These are some of it's fragments: Expr: Expr COMMA Expr | Assignment Assignment: IDENTIFIER | Assignment COMMA Assignment ...
3
votes
2answers
71 views

java bytecode class definition

currently I am working on a project that deals with byte-code analysis. I came across the code, char[] buff = new char[1]; //some code tainting the buff return (new String(buff)); in the byte ...
-1
votes
1answer
63 views

Recommend a Python Compiler on Win7x64

I've been teaching myself Python from Codecademy.com, but their site is acting wonky and the built-in compiler on some lessons is hosed. I just installed Python 3.3.1 on my system, but for the life ...
0
votes
0answers
22 views

How can i modify gcc sources in order to make it running from one specific folder? [closed]

I prepare gcc compiler to usage at company with specific security policy and i have to make it running only in one specific folder. How can i modify gcc sources in order to do it? I think i should ...
0
votes
1answer
44 views

Not able to run JFlex generated lexer Java file

So I used JFlex to generate a file called Yylex.java without any problems. When I try to compile it with the command javac Yylex.java, I get 30 errors, originating with this one: Yylex.java:13: ...
-2
votes
1answer
48 views

syntactic analysis with DFA [closed]

I'm doing some research on compiler development, and am wanting to understand more about how the system works parsing using DFA tables. I see the theory of the operation of DFA table with parsers ...
1
vote
2answers
145 views

Compiling .java files from the command line - external libraries, classpath

I made a project in Eclipse and am now trying to ensure that the .java files compile from the command line. I've been trying to compile using javac *.java in the folder with all my .java files. ...
0
votes
1answer
19 views

Falcon language reserved keywords

I'm writing a compiler for Falcon (as a course project for my graduate level compiler's class). Currently I'm working on lexical analyser. In that I need to figure out whether a lexeme is a keyword or ...
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
44 views

Linking to a dynamic library installed with Homebrew using gcc?

I am trying to compile a program with GCC 4.2.1 that requires a library that was installed with Homebrew on Mac OS X (10.8.3). It's a simple C program that uses gvc.h, which is a library that comes ...
1
vote
1answer
48 views

Can I control what the .NET compiler automatically converts to expressions

The VB compiler automatically converts lambda's to their LambdaExpression equivalents (eg in Dim a As LambdaExpression = Function(x) x.Length). Until recently, I thought that feature only applied to ...
0
votes
1answer
45 views

Correct compiler terminology

I'm coding a compiler that consists of four separate programs: the preprocessor, the to-assembly compiler, the assembler (NASM) and the linker (ld). When writing about it, I have some issues ...
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 ...
0
votes
1answer
55 views

Can Clang be used to parse c/c++ files and return class info (names, methods, params)?

I'm going to add autocomplete for IDE and Clang is known to be very user-friendly. Can it be used to parse c/c++ files on-fly and return class info (names, methods, params)?
1
vote
2answers
376 views

What does Backpatching mean? [closed]

What does backpatching mean ? Please illustrate with a simple example.
1
vote
1answer
146 views

What does syntax directed translation mean?

Can anyone, in simple terms, explain what does "Syntax Directed Translation" mean? I started to read the topic from Dragon Book but couldn't understand. The Wiki article didn't help either.
0
votes
2answers
47 views

Visual C++ 2010 Linking [closed]

I have been trying to use some libraries for days now, but I just can't find my way around linking them right. Some of them I managed to get to work some not and it is always a linking error. I know ...
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 ...
-1
votes
1answer
35 views

Defining token “int matrix” in flex [duplicate]

I am trying to define two tokens in flex. First one returns "tINTTYPE", which returns when it sees the string "int" in the input, and other one is "TINTTYPE", which returns when it sees "int matrix" ...
0
votes
2answers
66 views

C++ iterative vs recursion optimizations in the compiler [closed]

Let's say I have a recursive function that calls itself many times (like a factorial) before it ever reaches the base case/gets a value to start unrolling the rest up the chain. Will the compiler ...
7
votes
4answers
86 views

Code with generics with super does not work as expected

I have the following code : List<? super Integer> numbers = new ArrayList<Number>(); numbers.add(new Integer(10)); Number object = numbers.get(0); //this doesn't compile?? Object object ...
0
votes
2answers
140 views

asm.js limits on the compiler

I would like to know if there are any "limits by design" on the asm.js spec that would prevent any compiler to produce native assembly code directly from it. For now firefox seems to be able to be ...
1
vote
1answer
115 views

Compiling Objective-C Application on Linux

I've written a command line application in XCode using Objective-C. When added to my /usr/local/bin path is works as expected in OS X. However, I would like to make the binary work on Linux. The ...
5
votes
5answers
221 views

C++ implemented in plain C [duplicate]

I have read several times that early C++ compilers translated first C++ code into plain C before compiling it (or maybe needed a third-party C compiler). Playing myself with grammar / language / ...
20
votes
8answers
844 views

Are the Optimization Keywords in C and C++ Reasonable?

So we've all heard the don't-use-register line, the reasoning being that trying to out-optimize a compiler is a fool's errand. register, from what I know, doesn't actually state anything about CPU ...
1
vote
2answers
62 views

Resolving the types of functions in external modules

Suppose we have an imaginary statically typed programming language - let's call it SL. Each SL file corresponds to a module - SL's logical grouping of related functions into namespaces. Calls to ...
1
vote
1answer
131 views

CCS Error[128] A #DEVICE required before this line

I am getting Error[128] C:\Program Files\PICC\drivers\string.h 34 : A #DEVICE required before this line when compiling simple helloWorld.c #include <stdio.h> void main() { printf("Hi"); ...
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 ...
7
votes
2answers
101 views

Generating source maps for multiple, concatenated, javascript files, compiled from Coffeescript

Has any one had any success with this? Thanks in advance for any tips.
0
votes
0answers
73 views

LR(0) or SLR grammar (parsing table)

I'm studying compilers at the moment and am a bit stuck on the following question. We have two grammars as follows: Grammar 1 S -> A A -> A11 A -> 1 Grammar 2 S -> A A -> 1A1 A -> 1 And we're ...
0
votes
1answer
170 views

Glut in Dev C++ error “redeclaration of C++ built-in type `short'”

I am beginner to GLUT in C++. I am using Dev C++ as my IDE. I have this simple triangle drawing code and it produces an error "redeclaration of C++ built-in type short ". But When I put ...
2
votes
1answer
70 views

Constructor call as constructor parameter evaluates the declaration as a function pointer

I just came across a weird ambiguity which took me ages to isolate since it suddenly appeared in the middle of some template mess after a minor API change. The following example explores different ...
4
votes
1answer
58 views

String concatenation in C-bison-flex

I am writing a semantic analyzer using flex and bison. There, i have a matrix literal, which is something like [1,2,3;3,4;5]. Assume they are integers. I have the following rules: In flex file: int ...
1
vote
2answers
54 views

SASS or LESS packaging

I want to be able to import my scss or less file (either language doesn't matter) from different directories. The directories are this on my computer: apps/myapp/includes/css/ & ...
5
votes
1answer
125 views

Compile Java in Xcode 4

I know that this question has been floating around for ages now ... Java in Xcode 4. I don't need any recommendations (Eclipse, Netbeans e.g.) I just want to compile some simple Java Code in ...
0
votes
1answer
57 views

how to install lprotobuf-c in ubuntu for c language

/usr/bin/ld: cannot find -lprotobuf-c collect2: ld returned 1 exit status make: *** [test_apl] Error 1 These are the errors I'm getting. I have installed apt-get install protobuf-c-compiler, but ...
0
votes
2answers
78 views

How to change compiler in Visual C++ 2010 Express

I have Visual C++ 2010 Express and I want to build a 64-bit app. On OS X we use gcc. If I install MinGW, how does one change the default compiler in Visual C++ 2010 Express to use MinGW or ...
0
votes
1answer
23 views

OSX-Terminal -jar run command

I used to work with Eclipse but switched recently to CodeRunner. The Problem is I'm supposed to use Graphviz, Batik and a Package from my college in order to work on some projects. As long as there ...

1 3 4 5 6 7 136