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 ...
-6
votes
2answers
42 views
Compiler issue or some bug in code block of c [duplicate]
The very amazing and shocking logical problem occur which simple coding in c++.
See the following two chunk of code.
code 1
int m = 5, n = 0;
n = m++ * ++m;
//This print m = 7 and n = 36
...
-3
votes
4answers
66 views
C++. Can we have same named function, but in different file?
Lets say that i have three .cpp files and 2 header files.
1st file:
it main.cpp, it calls all function and stuff. the 2 header files are included.
2nd file:
Contains two functions:
int ...
0
votes
0answers
71 views
Compiling frameworks(cppunit, boost, ++) from terminal to work with Xcode 4.6
I'm trying to use some frameworks with Xcode 4.6.2.
C++ frameworks, such as cppunit and boost that is supposed to be compiled and linked to in my projects always fails with "Undefined symbols for ...
1
vote
1answer
26 views
What to get the parser tree of a compiler which is written using Lex and Yacc program?
I have written a program using Lex and Yacc.I want to know how to get the parser tree of that using this program.Can anyone please give me the code to get it? I have used gcc lex.yy.c
y.tab.c -o ...
1
vote
1answer
51 views
NetBeans C++ Looking for make utility in the wrong location
My issue here is that I have all the proper compilers for C, C++, etc installed (MinGW), and they are functioning properly but Netbeans will not acces the make.exe util. I reinstalled NetBeans C++ ...
-1
votes
1answer
66 views
0
votes
0answers
60 views
Intel Compiler vs GCC code generation differences
I'm learning about x64 programming and the differences between Intel C++ compiler and GCC and how they optimise the instructions
Questions:
What's the best way to tell Intel Compiler to dump the ...
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?
0
votes
1answer
30 views
How to see which static libraries were used for gcc/g++ compilation
Context: I'm using a linux toolchain (includes g++, other build tools, libs, headers, etc) to build my code with statically linked libraries. I want to ensure that I'm using ONLY libraries/headers ...
0
votes
0answers
15 views
How would you replace variables in a config file that also defines those variables?
I have a configuration file that has a number of definitions, but I want the user to be able to use these definitions throughout the file. For example:
Name: abc
Group: xyz
Authorized Ports: 22, 80, ...
1
vote
2answers
47 views
Speedy attribute lookup in dynamically typed language?
I'm currently developing a dynamically typed language.
One of the main problems I'm facing during development is how to do fast runtime symbol lookups.
For general, free global and local symbols I ...
-2
votes
0answers
49 views
Parsing technique for given language statements?
I am new to compiler writing and trying to learn writing compiler/interpreter.
I have following language statements which do not follow natural language statements -
Input -
one is 1
two is 2
three ...
0
votes
1answer
13 views
How a control-statement, array, function (procedure) is compiled by a simple compiler?
I just want to know a simple explanation of how if-else statements, loops, procedures get parsed by a compiler ?
I found it ungoogleable..... :( Please Help me to get into this...!!!
1
vote
1answer
34 views
how to refresh AST in libclang
my code visit the AST generated by libclang, and insert some code into it. I want to get the new AST, at the same time I want to avoid writing code to file, Is there any api in libclang to do this?
4
votes
2answers
98 views
Creating and running executable by hand
Just for interest sake, I want to compile and run the simplest C program by hand;
//t.c
int main() {
return 0;
}
So I want to do:
$ cpp t.c : should do nothing in this case, since no ...
7
votes
4answers
190 views
What can a compiler do with branching information?
On a modern Pentium it is no longer possible to give branching hints to the processor it seems. Assuming that a profiling compiler such as gcc with profile-guided optimization gains information about ...
0
votes
0answers
87 views
what would be the data structure for 5 stage of pipelining of assembly line using c++? [closed]
I am trying to simulate assembly language using c++. So far I am able to push each instruction into a struct. I have also taken care of label.
Now I want to simulate 5 stage of pipelining and also ...
1
vote
1answer
60 views
How to configure libstdc++ with GCC 4.8?
A while back, I decided to upgrade to GCC 4.8 in order to get an early start on some c++11 features. I got a bit sidetracked, though, and didn't really put any of the new features to use until a ...
2
votes
2answers
108 views
How can I link C++ files to a C program?
I'm currently trying to link a big C++ program to a C "wrapper," to allow integration with a program in another language whose compiler understands C but not C++ (Haskell GHC, to be precise.) But my ...
1
vote
1answer
55 views
maven refuses to compile generic class due to bounds, even after casting class
Here is a simplified version of the code I'm using to hold a generic list of children to a parent. Forgive me for having to rewrite this by hand instead of copy-past, There is no way to copy from ...
0
votes
0answers
30 views
SFML 2.0 in Codeblocks 12.11 with minGW
I have been trying to make SFML 2.0 libraries work in Codeblocks 12.11 with mingw9 (gcc 4.7.1), but compiling even example code produces many errors including almost every operator overload, every ...
0
votes
1answer
28 views
CompileAssemblyFromDom throws access denied exception
The code:
using (var codeProvider = new CSharpCodeProvider())
{
var compilerParameter = new CompilerParameters(
_assemblies, assemblyName, false)
{
...
0
votes
1answer
18 views
Resolve Shift/Reduce warning in GnuWin32 Bison?
i have the following rules and when implementing them with bison i get 5 shift/reduce warnings.
a part of the Rules are:
Type----> BOOL
| INT
| CHAR
| DOUBLE
...
0
votes
0answers
59 views
Cmake refuses to find the correct MinGW folder
I'm completely at a loss here.
I have a C++ project that uses CMake. It used to work, but recently some weird problems came up, so I decided to reinstall the Qt SDK and CMake. However, now I get the ...
0
votes
1answer
114 views
Restrictions on non volatile variables in C
I Would like to understand what Restrictions if any does the compiler have with regards to non volatile variables in C.
I'm not sure if its true or not, but I've been told that if you have the ...
0
votes
2answers
48 views
Local variable being stored over different function calls. weird
I'm bewildered by whats happening. It's more of a trick question I don't know the answer to.
I have the following function inside my main.m of an Objective-C program.
int incrementCounter(){
...
0
votes
3answers
51 views
C++ variable extern declarations
I have declared some constants in a header file:
extern int g_iShortSize1FrameEncoded=30;
extern int g_iByteSize1FrameEncoded=(g_iShortSize1FrameEncoded*2);
extern int ...
0
votes
1answer
29 views
PHP compiler doesn't find any libraries
I'm following this tutorial to compile PHP on windows.
I'm now at the last steps, but for some reason I get a whole lot of errors like
WARNING: zlib support can't be enabled, zlib is missing
...
0
votes
0answers
37 views
Construct a automaton using grammar
This grammar describes floating point numbers in a compiler. How can I construct the corresponding automaton?
floatnumber ::= pointfloat | exponentfloat
pointfloat ::= [intpart] fraction | ...
0
votes
1answer
65 views
Qt Creator 2.7.0 compiler error
Screen-shot from Tools > Options > Build & Run > Compilers
Screen-shot from Tools > Options > Build & Run > Qt versions
Screen-shot from Tools > Options > Build & Run > Kits
...
4
votes
4answers
135 views
Compiler code generation comparisons
Ok, so all started here: Unsigned integer and unsigned char holding same value yet behaving differently why?
I wrote the following application to understand what happens behind the scenes (ie, how ...
1
vote
1answer
35 views
Interpreting/Designing an AST or using an IR
I am currently implementing my own simple toy programming language. I would like this to be implemented as quickly as possible, but I am quite unsure where to go from the current stage I am in. I plan ...
-2
votes
3answers
88 views
Lightweight C but NO C++ compiler [closed]
I'm helping out my friend with a project and I'm decent C++ programmer, but they need program done in C. As far as I saw, when you open project in Visual Studio/Netbeans it says C/C++. C++ part is bad ...
-2
votes
1answer
372 views
Setting up cross compiler for Raspberry Pi on Ubuntu 13.04 [closed]
I am currently trying to set up a cross compiler for Raspberry Pi (Using Ubuntu 13.04), and I am running into an error that I cannot interptet (or find any help with on google).
I have been following ...
0
votes
0answers
25 views
Compiling Qt with a struct member alignment of 1 in Visual Studio
The Issue
I have a Qt application that is made in Visual Studio 2005 which uses a fair amount of other libraries which are all compiled with a struct member alignment of 1. I'm also pretty sure that ...
-4
votes
0answers
55 views
Getting a C++ Source Code to Work [closed]
I'm trying to build a simple syntax analyzer - compiler project, I searched the internet extensively on how to write one. I understand the whole theory but I can't get it on code. Finally I found this ...
17
votes
1answer
502 views
What does `:>` (colon, greater than, aka. smile face) mean in C Programming Language? [duplicate]
recently I ran into a strange grammar of C Programming Language.
First, let's see the code:
main(void) {
int a[10:> ;
printf("asdf");
return 0;
}
And you can compile it with gcc:
/tmp gcc ...
1
vote
2answers
71 views
C++ struct redefinition compiler error
I have created a new .h file with the following contents:
#include "stdafx.h"
#include <string>
using namespace std;
struct udtCharVec
{
wstring GraphemeM3;
wstring GraphemeM2;
};
...
0
votes
2answers
46 views
effect of position of fileds in a class?
Is there any difference in the code generated for the following classes in java:
class A_noConstructor
{
public static int par1;
public static int par2;
void method1(){
}
void ...
1
vote
1answer
61 views
Compiling C++ source for maximum portability
I created a standalone executable using C++ and I want it to be usable by the largest number of people possible. In terms of compiler options what can I do to ensure this? I'm using MinGW with the ...
1
vote
0answers
53 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?
...
2
votes
2answers
84 views
Does compilers move skip checks to outside the function call?
Functions or methods like:
void DoSomething(...){
if( ... ) return;
...
}
Checks that skip the entire function if a condition is met. Does the compiler move the check code outside the ...
-1
votes
2answers
46 views
How to write a custom assembly compiler (sort of) in VB.NET
I've been trying to write a simple script compiler for a custom language used by the Game Boy Advance's Z80 processor.
All I want it to do is look at a human-readable command, take it and its ...
-2
votes
2answers
45 views
How can I implement an expressions structure in java that supports evaluating and multiple types
In the light of writing a tool that compiles simple programs in a custom language that uses a parser for parsing simple .txt-file programs, I'm looking for an efficient way to store and evaluate ...
1
vote
4answers
76 views
How to tell distutils to use gcc?
I want to wrap a test project containing C++ and OpenMP code with Cython, and build it with distutils via a setup.py file. The content of my file looks like this:
from distutils.core import setup
...
4
votes
1answer
99 views
strange behavior in for loop - a bug?
I'm working with Visual Studio 2012 on a Windows 7 machine and when trying to run the following code snippet (compiled with the default VC11 C++ compiler in x64 mode) the assertion fails, which means, ...
0
votes
1answer
49 views
'env: ruby_noexec_wrapper: No such file or directory' error in PhpStorm SASS compilation on Mac
I read around a lot and tried different things but my PhpStorm just doesn't want to compile my SASS/SCSS files into CSS files.
Here are pictures of my File Watcher configuration and the error message ...
1
vote
1answer
108 views
Are std::functions inlined by the C++11 compiler?
I'm working on a small mathematical optimization framework in C++11, and I wonder what's the best way for the user to provide domain-specific logic. I could force her to define classes with hook ...
0
votes
0answers
44 views
VS tries to compile Resharpers decompiled code
Sometimes when I have looked at decompiled code using Resharper's decompiler and then try to build my project, VS tries to compile the decompiled code that Resharper generated for me. When I look at ...
5
votes
1answer
125 views
Lambda returning lambda incorrectly infers return type?
This question is a continuation of a recent question of mine:
What is this compiler error when using a lambda as a template parameter?
This code fails to compile using the VS2012 (Update 2):
int ...




