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)

1790
votes
6answers
58k views

Flash CS4 refuses to let go

I have a Flash project, and it has many source files. I have a fairly heavily-used class, call it Jenine. I recently (and, perhaps, callously) relocated Jenine from one namespace to another. I thought ...
195
votes
12answers
29k views

Why does C++ compilation take so long?

Compiling a C++ file takes a very long time when compared to C#, Java. It takes significantly longer to compile a C++ file than it would to run a normal size Python script. I'm current using VC++ but ...
174
votes
4answers
5k views

Why does Java switch on ordinal ints appear to run faster with added cases?

I am working on some Java code which needs to be highly optimized as it will run in hot functions that are invoked at many points in my main program logic. Part of this code involves multiplying ...
136
votes
11answers
49k views

What is the difference between Cygwin and MinGW?

I want to make my C++ project cross platform, and I'm considering using Cygwin/MinGW. But what is the difference between them ? Another question is whether I will be able to run the binary on a ...
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 ...
129
votes
8answers
6k views

Why #define TRUE (1==1) in a C boolean macro instead of simply as 1?

I've seen definitions in C #define TRUE (1==1) #define FALSE (!TRUE) Is this necessary? What's the benefit over simply defining TRUE as 1, and FALSE as 0?
127
votes
1answer
4k views

How are gcc/g++ bootstrapped?

This has been bugging me for a while. How do gcc/g++ compile themselves? I'm guessing that every revision gets compiled with a previously built revision. Is this true? And if it is, does it mean that ...
114
votes
12answers
49k views

How do I speed up the gwt compiler?

We're starting to make heavier use of GWT in our projects, and the performance of the GWT compiler is becoming increasingly annoying. We're going to start altering our working practices to mitigate ...
103
votes
5answers
32k views

Warning: Found conflicts between different versions of the same dependent assembly

I am currently developing a .NET application, which consists of 20 projects. Some of those projects are compiled using .NET 3.5, some others are still .NET 2.0 projects (so far no problem). The ...
101
votes
7answers
40k views

Will #if RELEASE work like #if DEBUG does in C#?

In all the examples I've seen of the #if compiler directive, they use "DEBUG". Can I use "RELEASE" in the same way to exclude code that I don't want to run when compiled in debug mode? The code I ...
100
votes
9answers
30k views

Why does this() and super() have to be the first statement in a constructor?

Java requires that if you call this() or super() in a constructor, it must be the first statement. Why? For example: public class MyClass { public MyClass(int x) {} } public class MySubClass ...
99
votes
4answers
8k views

How does the C# compiler detect COM types?

EDIT: I've written the results up as a blog post. The C# compiler treats COM types somewhat magically. For instance, this statement looks normal... Word.Application app = new Word.Application(); ...
98
votes
12answers
6k views

How to drive C#, C++ or Java compiler to compute 1+2+3+…+1000?

In a recent interview, I was asked a really strange question. The interviewer asked me how can I compute 1+2+3+...+1000 just using compiler features. This means that I am not allowed to write a ...
90
votes
14answers
6k views

Why does this Java code compile?

In method or class scope, the line below compiles (with warning): int x = x = 1; In class scope, where variables get their default values, the following gives 'undefined reference' error: int x = ...
89
votes
9answers
19k views

How to avoid .pyc files?

Can I run the python interpreter without generating the compiled .pyc files?
85
votes
3answers
2k views

Why does this (null || !TryParse) conditional result in “use of unassigned local variable”?

The following code results in use of unassigned local variable "numberOfGroups": int numberOfGroups; if(options.NumberOfGroups == null || !int.TryParse(options.NumberOfGroups, out numberOfGroups)) { ...
84
votes
10answers
24k views

“No newline at end of file” compiler warning

What is the reason for the following warning in some C++ compilers? No newline at end of file Why should I have an empty line at the end of a source/header file?
83
votes
7answers
37k views

What does a just-in-time (JIT) compiler do?

What does a JIT compiler specifically do as opposed to a non-JIT compiler? Can someone give a succinct and easy to understand description?
79
votes
4answers
4k views

Reading GHC Core

Core is GHC's intermediate language. Reading Core can help you better understand the performance of your program. Someone asked me for documentation or tutorials on reading Core, but I couldn't find ...
76
votes
3answers
16k views

error: writable atomic property cannot pair a synthesized setter/getter with a user defined setter/getter

I recently tried to compile an older Xcode project (which used to compile just fine), and now I'm seeing a lot of errors of this form: error: writable atomic property 'someProperty' cannot pair a ...
76
votes
6answers
9k views

How to translate between programming languages

I am setting out to do a side project that has the goal of translating code from one programming language to another. The languages I am starting with are PHP and Python (Python to PHP should be ...
75
votes
11answers
3k views

Is the creation of Java class files deterministic?

When using the same JDK (i.e. the same javac executable), are the generated class files always identical? Can there be a difference depending on the operating system or hardware? Except of the JDK ...
72
votes
20answers
18k views

What techniques can be used to speed up C++ compilation times?

What techniques can be used to speed up C++ compilation times? This question came up in some comments on this question: http://stackoverflow.com/questions/372862/c-programming-style And I'm ...
72
votes
2answers
14k views

compilation warning: no rule to process file for architecture i386

How can I resolve this warning? [WARN]warning: no rule to process file '$(PROJECT_DIR)/MyApp/MessageCell.h' of type sourcecode.objj.h for architecture i386
71
votes
3answers
22k views

How exactly does __attribute__((constructor)) work?

It seems pretty clear that it is supposed to set things up. When exactly does it run? Why are there two brackets? Is __attribute__ a function? A macro? Syntax? Does this work in C? C++? Does the ...
70
votes
14answers
46k views

Compile, Build or Archive problems with Xcode 4 (and dependancies)

This question has evolved over the past several weeks to cover more general issues with xcode4 (and upgrading projects form older xcodes). However many of the issues can be solved by following the ...
67
votes
1answer
4k views

Where to learn about VS debugger 'magic names'

If you've ever used Reflector, you probably noticed that the C# compiler generates types, methods, fields, and local variables, that deserve 'special' display by the debugger. For instance, local ...
66
votes
11answers
22k views

Can Go compiler be installed on Windows?

I've been looking on golang.org for a Windows compiler, but I can't seem to find it. I can only see Linux and OS X compilers. Does anyone know if Go programming can be done on Windows, or is it ...
64
votes
4answers
66k views

What causes javac to issue the “uses unchecked or unsafe operations” warning

For example: javac Foo.java Note: Foo.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details.
63
votes
2answers
10k views

Purpose of “let expression” (LetExpr) in the Java compiler?

The Java compiler seems to have support for let expressions in com.sun.tools.javac.tree.* (look for LetExpr). One comment in JCTree even mentions some syntax (let int x = 3; in x+2) which of ...
61
votes
8answers
4k views

Is C open source?

This is probably a stupid question, but I've been wondering about this for a while. Does C (or any other low-level language, for that matter) even have source, or is the compiler the part that "does ...
61
votes
10answers
11k views

Can a recursive function be inline?

inline int factorial(int n) { if(!n) return 1; else return n*factorial(n-1); } As I was reading this, found that the above code would lead to "infinite compilation" if not handled by ...
60
votes
8answers
136k views

gcc makefile error: “No rule to make target …”

I'm trying to use GCC (linux) with a makefile to compile my project. I get the following error which is can't seem to decipher in this context: "No rule to make target vertex.cpp', needed by ...
59
votes
10answers
25k views

Why do we need extern “C”{ #include <foo.h> } in C++?

Specifically: When should we use it? What is happening at the compiler/linker level that requires us to use it? How in terms of compilation/linking does this solve the problems which require us ...
58
votes
12answers
5k views

Implementing a compiler in “itself”

Intuitively, it would seems that a compiler for language Foo, cannot itself be written in Foo. More specifically, the first compiler for language Foo cannot be written in Foo, but any subsequent ...
57
votes
1answer
3k views

TargetedPatchingOptOut: “Performance critical to inline across NGen image boundaries”?

Been going through some framework classes using reflector and noticed a number of the methods and properties have the following attribute [TargetedPatchingOptOut("Performance critical to inline ...
55
votes
14answers
37k views

Runtime vs Compile time

Can anyone please give me a good understanding of whats the difference between run-time and compile-time?
55
votes
1answer
1k views

Why is so much space allocated on the stack?

This question comes from answering another question, where I tried to demonstrate to the OP what happens when you allocate a variable on the stack and how the compiler generates code that knows the ...
55
votes
4answers
2k views

Why C# is always winning over VB.NET?

I wrote a program that allow two classes to "fight". For whatever reason C# always wins. What's wrong with VB.NET ? static void Main(string[] args) { Player a = new A(); Player ...
54
votes
4answers
8k views

How is release handled for @synthesized retain properties?

I have some questions about synthesized properties in Objective-C. The full list follows, but the basic question is this: How does the compiler ensure that the ivars for synthesized properties are ...
53
votes
22answers
25k views

Advantage of switch over if-else statement

What's the best practice for switch vs if for a 30 unsigned enumerations where about 10 have an expected action (that presently is the same action). Performance and space need to be considered but ...
52
votes
7answers
3k views

Why is writing a compiler in a functional language easier?

I've been thinking of this question very long, but really couldn't find the answer on Google as well a similar question on Stackoverflow. If there is a duplicate, I'm sorry for that. A lot of people ...
52
votes
4answers
6k views

What is the difference between javac and the Eclipse compiler?

Is Eclipse's Java compiler just a wrapper around the same core that the javac program is wrapped around, or is it a separate compiler altogether? If the latter, why would they reinvent the wheel?
50
votes
18answers
5k views

C / C++ compiler warnings: do you clean up all your code to remove them or leave them in?

I've worked on many projects where I've been given code by others to update. More often than not I compile it and get about 1,000+ compiler warnings. When I see compiler warnings they make me feel ...
50
votes
6answers
28k views

Compiling with g++ using multiple cores

Quick question: what is the compiler flag to allow g++ to spawn multiple instances of itself in order to compile large projects quicker (for example 4 source files at a time for a multi-core CPU)? ...
49
votes
13answers
49k views

Where are static variables stored (in C/C++)?

In what segment (.BSS, .DATA, other) of an executable file are static variables stored so that they don't have name collision? For example: foo.c: bar.c: static int foo = 1; ...
48
votes
8answers
18k views

likely/unlikely macros in the Linux kernel

I've been digging through some parts of the Linux kernel, and found calls like this: if (unlikely(fd < 0)) { /* Do something */ } or if (likely(!err)) { /* Do something */ } I've ...
48
votes
5answers
12k views

What is the difference between LR, SLR, and LALR parsers?

What is the actual difference between LR, SLR, and LALR parsers? I know that SLR and LALR are types of LR parsers, but what is the actual difference as far as their parsing tables are concerned? And ...
46
votes
9answers
42k views

Can you “compile” PHP code?

I know that PHP is compiled to byte code before it is run on the server, and then that byte code can be cached so that the whole script doesn't have to be re-interpreted with every web access. But ...
46
votes
9answers
5k views

Why does Go compile so quickly?

I've Googled and poked around the Go website, but I can't seem to find an explanation for Go's extraordinary build times. Are they products of the language features (or lack thereof), a highly ...

1 2 3 4 5 138