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 ...
5
votes
0answers
134 views
System.Plugins loader seems to assume failure after seeing a failure once
I am currently working on a haskell program which takes a users input from a text box, then
compiles and loads it using the System.Plugins library in order to extract a picture to draw to the screen. ...
4
votes
0answers
176 views
Delphi 7 Compiling components on every build
I usually don't show compiler progress when compiling, but I decided to turn it on.
I noticed that when my program compiles, it is also compiling the components that it uses. For example it uses ...
4
votes
0answers
244 views
Is the Intel Xeon Phi usable without a costly Intel Compiler?
Does the Intel Xeon Phi coprocessor, to be usable as parallel platform, require a license of the Intel Composer XE compiler, or are there alternative compilers?
4
votes
0answers
199 views
Can Visual Studio tell me the SSE2 register spill count of compiled code?
I do not have any real compiler knowledge, and I used to hand-code SSE2 functions for selected pieces of code. I know how to read the generated machine code, but largely unaware of the crazy ...
4
votes
0answers
816 views
Error: Junk character at end of line, first unrecognized character valued 0x7F
I am a newbie to Android NDK, I am using android-ndk-r5 to build the Gearoid source code. After several warning of the following type
warning: null characters ignored
the assembler terminates with ...
3
votes
0answers
159 views
Python compiler for simple language to java vm code algorithm
I have a simple language that I am trying to write a compiler for (yes it is homework) to compile a simple language I shall describe if necessary to java vm code.
It currently works pretty well I've ...
3
votes
0answers
945 views
How to convert a regular grammar to regular expression?
Is there an algorithm or tool to convert regular grammar to regular expression?
3
votes
0answers
900 views
time complexity trade offs of nfa vs dfa
(i found the answer, its below in comments for anyone else)
i am looking for a discussion on which is better used and in what circumstanes in a compiler an nfa or dfa. what are the time complexity ...
2
votes
0answers
156 views
What is the simplest way of parsing C++ source code (extracting meta-info) in Java?
I need to extract classes, methods and parameters from .c/.cpp files in Java code.
I've reviewed:
Antlr (can't find any ready c++ grammar for Java target),
gccxml (probably works but i can't test ...
2
votes
0answers
84 views
Using Stacks for Symbol Tables or not
I'm working on creating a compiler and have come across some text that suggests two different ways of implementing symbol tables. With one, there is a symbol table for each level of nesting which is ...
2
votes
0answers
104 views
GCC plugin adding a pass to introduce new keyword
I have just started exploring into the world of GCC plugins API and I'm trying to extend GCC for the following example.
class Foo { ... };
Foo* f = __construct Foo(); // __construct is meant to be a ...
2
votes
0answers
164 views
Putting source information into LLVM bitcode files for debugging compiler errors
I'm making a basic compiler and want to put the source lines of code somewhere near the llvm code that is produced for easy debugging. For example:
proc f(a:Int, b:Int):Int {
return a + b;
}
...
2
votes
0answers
224 views
BLAS library incompatible with Fortran 77 compiler settings
I'm trying to install Octave-3.6.2 from source on Ubuntu 12.04 with KDE desktop but when I run the Octave configure script I get this error
BLAS library was detected but found incompatible with your ...
2
votes
0answers
138 views
llvm JIT target assembly instruction count
I want to print the total number of NATIVE TARGET instructions executed while executing a program using the JIT.
My plan was to add a instruction (which increment a variable in memory) after EVERY ...
2
votes
0answers
179 views
scala nsc IMain bind() speed and memory issues
We are using tools.nsc.interpreter.IMain's bind() and interpret() method to execute scala scripts on a server. This is on on scala 2.9.1 and Java 7u2.
After repeatedly using the same IMain instance, ...
2
votes
0answers
250 views
How does .NET's Primary Interop Assembly Embedding work?
I am researching the .NET Common Language Infrastructure, and before I get into the nitty-gritty of the compiler I'm going to write, I want to be sure that certain features are available. In order to ...
2
votes
0answers
143 views
Deferred Binding Generators for non-GWT Java code
A project I am working on requires some code generation based on a set of annotations. I am interested in reducing the startup cost of processing the annotations and generating code which requires ...
2
votes
0answers
639 views
C# compiler error CS0006: metadata file is not found
I've built a c# compiler using the tutorial on MSDN and a few other resources including here, and I've gotten it to work until I add additional reference assemblies. My errors stem from adding ...
2
votes
0answers
183 views
Change ELF Endian Data Format
I am trying to edit some software to work with both Big and Little Endian ELF/DWARF files. In order to this, I think it would be a good idea to have both a Little and Big ELF file of the same data. I ...
2
votes
0answers
308 views
VS2010 - add custom compiler for certain file extensions
I've written a command-line OpenCL compiler. I'd like to have VS compile my kernel source files using this whenever I build the C# project that includes them. I've looked around and found information ...
2
votes
0answers
1k views
Unable to Read Symbols for iOS SDK 4.2.1
Everytime I attempt to debug an app on my 3GS running iOS 4.2.1 (8C148a) I get this warning in the compiler:
warning: Unable to read symbols for ...
2
votes
0answers
196 views
Derivative Code Compilers
I would like to ask if some one can explain to me what are the differences of syntax-directed tangent-linear code and adjoint code.
It is related to derivation of code with a compiler.
I understand ...
1
vote
0answers
7 views
Add source files to cocoa project not intended for compile
I'm writing a cocoa application which should copy files to a given directory. The files should be part of the app, but not compiled. I'm thinking of a folder, e.g. "MySources", where I want to add all ...
1
vote
0answers
13 views
How do I get Python distutils to honor $CC?
I am trying to use the ccomppiler functionality in Python distutils to compile & execute a test program. So far I have:
from distutils import ccompiler
cc = ccompiler.new_compiler()
outfiles = ...
1
vote
0answers
35 views
LL(k) context free grammars
How to verify whether a context free grammar is LL(k) for k > 1?
For example:
A-> aBaa | bBba
B-> b | epsilon
is a LL(2) grammar. Can please somebody justify?
1
vote
0answers
51 views
CoffeeScript loose compilation
Is there a way to compile CoffeeScript source loosely ignoring minor syntax errors like: variable = or object.? Is it possible out-of-the-box with stock compiler or some other compiler implementation?
...
1
vote
0answers
40 views
Build a .lib with the Intel C++ compiler and use with app in VC++?
I'm using VC++ 2012 to compile a solution with 2 projects. The main library is a Class Library project which simply outputs a .lib file, and the second is an Application, which uses the compiled ...
1
vote
0answers
26 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 ...
1
vote
0answers
71 views
Error when trying to compile on Windows
I just downloaded Rust 0.6 and tried to compile the hello world program. However, I get following error when trying to do so:
The procedure entry point "_gxx_personality_v0" was not found in ...
1
vote
0answers
69 views
Accessing a Python object from Java Code in Jython 2.5
I have an application using Jython 2.1.
In the app I was using jythonc to convert the python scripts to java classes and then include these classes in my webapp like any other.
So I was able to assign ...
1
vote
0answers
132 views
Xamarin.iOS “Attempting to JIT compile method” simple class
I have a Xamarin.iOS application. I am referencing an iOS Library project. In the library project, I have a very simple class.
using System;
namespace Noodle.iOS
{
public class TestClass
{
...
1
vote
0answers
35 views
write a REPL: where to start?
I learned Ruby and Scala, and they both have a great REPLs. The interactive tools help me a lot when learning a language.
Recently I'm learning Haxe and found it doesn't have a real REPL(just a ...
1
vote
0answers
84 views
Is it possible to execute a gcc .ssa file directly? If not, how to compile?
This question is a bit quaint, but I'm having difficulty finding the answer in this section of the manual.
If I dump the SSA of a C program into a file, like:
~$ gcc -fdump-tree-ssa program_name.c
...
1
vote
0answers
141 views
Problems compiling netcat for MIPS in ububtu
I'm new with this and I am a little messed with it:
I'm trying to compile netcat source code for MIPS in order to deploy it in my router, what I do is:
Download the toolchain for mips: ...
1
vote
0answers
19 views
How to change the text on a window of a compiled exe application
I have a complied windows executable application, I was asked to change some text on the form like copyright information or text of lables.
I used dependency.exe, this file do not use any seperate ...
1
vote
0answers
39 views
Data Dependency Profiling
I need to do a data dependency graph for some applications. However I need to highlight those dependences that in fact happened during a profiling execution of the application.
My question is: which ...
1
vote
0answers
150 views
how to change the default compiler on mac osx 10.8.2
I am using mac osx 10.8.2 and Xcode v4.6 with llvm-gcc (i686-apple-darwin11-llvm-gcc-4.2), when I tried to install a software I realised that this old software is not compatible with this new ...
1
vote
0answers
70 views
parsing and look -ahead tokens misunderstanding
I have some question that make me go crazy, please help me to understand them:
1.in LR(1) does the parser looks for the input in a given time and looks for the next input and then decides to make a ...
1
vote
0answers
115 views
Error when building android ADB on ubuntu
I've got a problem when I complied android adb source code. I follow some tips on google:
$ git clone git://android.googlesource.com/platform/system/core.git
system/core
$ git clone ...
1
vote
0answers
71 views
size optimization in xcode LLVM
I am compiling a C library with xcode 4.5.1 on os x 10.7.5.
The size of the library compiled with xcode LLVM is significantly bigger than when I just compile it using plain gcc with makefile passing ...
1
vote
0answers
88 views
error: asm/uaccess.h: No such file or directory
I'm running linux kernel no. 2.6.15.51 on a ubuntu system.
I created a custom system call and added it to the kernel (containing a struct), compiled, and booted into the new kernel. Now I'm trying ...
1
vote
0answers
162 views
How to prompt Matlab to use VS10 64 bit compiler
I am trying to compile and run a 64bit application in MATLAB using the Visual Studio 2010 Professional compiler. I know both the program and the compiler work properly because when I start matlab from ...
1
vote
0answers
80 views
GWT compiler doesn't notice changes in code
I use the GWT plugin for eclipse on a project, that's imported from maven. For some reason changes within my code aren't considered while compiling my web application. If I start the preview mode ...
1
vote
0answers
108 views
Including files by path relative to the server root with sencha compile command
Here is my folder structure :
www server root
. compile.bat contains sencha compile command
. custom.js custom javascript library
. appFolder application folder
. . Page.aspx ...
1
vote
0answers
162 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 ...
1
vote
0answers
26 views
MapSym not available in Visual Studio 2012
Visual Studio 2005 was having MapSym.exe tool which could be used for generating symbol files from map files. I am unable to finding this tool in my Visual Studio 2012 installation. Is MapSym no ...
1
vote
0answers
164 views
MATLAB gives error while generating MEX file from Fortran source codes
When I try to generate the MEX file from the Fortran source code (TEINITG.F), Matlab always gives errors.After downloading the trial versions of Intel Visual Fortran 11.1 Microsoft Visual C++ 2008 ...
1
vote
0answers
36 views
How to explain rehosting and retargeting with T-diagramms?
I'm currently learning for an exam about compilers and found the following question:
(3 p.) Bootstrapping: Explain the concepts of rehosting and retargeting. Use T-diagrams.
As far as I ...
1
vote
0answers
92 views
Boxing a reference type (class)?
I have this very simple property (this is a WPF project using Prism Notifications and Interactions)
public bool ConfirmNavigation
{
get { return _confirmNavigation; }
set { _confirmNavigation ...
1
vote
0answers
608 views
clang: error: no such file or directory:
I'm trying to compile a project using OAuth2Client, I get the error:
Ld ...


