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 ...
0
votes
0answers
46 views
Executing a java program having input statements through another java program
Hi all I am trying to make online java compiler.
As a initial POC I am able to compile and run program having no input statements but I dont'd know what to do if there are input statements also.
I ...
0
votes
1answer
30 views
when I compile with Scite, command prompt won't show up, why?
when I compile with Scite, command prompt won't show up, why?
I am programming a c program, and it wouldn't pop up once I complied
is it because its not connected? or do I have to connect it, if so ...
0
votes
1answer
47 views
How to Get CMake to Use Default Compiler on System PATH?
Currently, I invoke CMake from my build directory as follows:
CXX="/opt/gcc-4.8/bin/g++" cmake ..
to get CMake to use this particular compiler. Otherwise it uses the operating system default ...
0
votes
1answer
163 views
Qt distribute application for windows on qt 5.0.2
I have tried to distribute an application that I wrote in Qt creator without success.
I compiled and with dependency walker found all the DLL files that are required, I created a folder and copied ...
1
vote
4answers
82 views
Parsing, which method choose?
I'm working on a compiler (language close to C) and I've to implement it in C. My main question is how to choose the right parsing method in order to be efficient while coding my compiler.
Here's my ...
-2
votes
1answer
33 views
What is meant by n-bit something? [closed]
What do we exactly mean when we say n-bit something like -
64-bit compiler
32-bit microprocessor
64-bit architecture
I know that bit mean binary digit. And I also know what it means when we talk ...
1
vote
3answers
57 views
memory sharing in .o file
Lets say i have a A.c file and compile it to a A.o file.
The A.c file is as follows:
int a;
void add(void)
{
}
The A.o file together with a B.o form a 1.exe file.
The A.o file together with a C.o ...
5
votes
2answers
180 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
183 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
117 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
19 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
52 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
65 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
34 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
254 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
44 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
72 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
45 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
150 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
41 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
46 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
46 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
432 views
What does Backpatching mean? [closed]
What does backpatching mean ? Please illustrate with a simple example.
1
vote
1answer
153 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
49 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
67 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
846 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
135 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
104 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
76 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
176 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 ...



