Tagged Questions

Compilation is the process of producing information, typically a program to be executed by a computer, from a source (or sources) typically being text in a computer programming language. Compilation can be "converting" between programming languages or assembling executable code from one such language, and is usually a part of the process of building and publishing computer software.

learn more… | top users | synonyms (2)

93
votes
11answers
8k 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 ...
90
votes
11answers
7k views

How do I get Windows to go as fast as Linux for compiling C++?

I know this is not so much a programming question but it is relevant. I work on a fairly large cross platform project. On Windows I use VC++ 2008. On Linux I use gcc. There are around 40k files in ...
80
votes
34answers
47k views

Very slow compile times on Visual Studio

We are getting very slow compile times, which can take upwards of 20+ minutes on dual core 2GHz, 2G Ram machines. A lot of this is due to the size of our solution which has grown to 70+ projects, ...
50
votes
13answers
2k views

How do programmers work together on a project?

I've always programmed alone, I'm still a student so I never programmed with anyone else, I haven't even used a version control system before. I'm working on a project now that requires knowledge of ...
45
votes
5answers
2k views

Why doesn't the JVM cache JIT compiled code?

The canonical JVM implementation from Sun applies some pretty sophisticated optimization to bytecode to obtain near-native execution speeds after the code has been run a few times. The question is, ...
35
votes
8answers
15k views

Is it feasible to compile Python to machine code?

How feasible would it be to compile Python (possibly via an intermediate C representation) into machine code? Presumably it would need to link to a Python runtime library, and any parts of the Python ...
33
votes
8answers
8k views

Displaying the build date

I currently have an app displaying the build number in its title window. That's well and good except it means nothing to most of the users, who want to know if they have the latest build - they tend ...
33
votes
10answers
3k views

Why do you have to link the math library in C?

If I put stdlib.h or stdio.h, I don't have to link those but I have to link when I compile: gcc test.c -o test -lm What is the reason for that? Why do I have to explicitly link the math library ...
33
votes
7answers
11k views

Why compile Python code?

Why would you compile a Python script? You can run them directly from the .py file and it works fine, so is there a performance advantage or something? I also notice that some files in my ...
31
votes
4answers
3k views

Java compile speed vs Scala compile speed

I've been programming in Scala for a while and I like it but one thing I'm annoyed by is the time it takes to compile programs. It's seems like a small thing but with Java I could make small changes ...
29
votes
5answers
9k views

Node.js could not configure a cxx compiler! (Ubuntu)

I have Ubuntu installed and I am trying to compile node.js
29
votes
7answers
11k views

Is there some way to compile a .NET application to native code?

What if I want to run a .NET application in a machine where the .NET framework is not available? Is there some way to compile the application to native code?
27
votes
16answers
5k views

RAMDrive for compiling - is there such a thing?

An answer (see below) to one of the question right here on SO gave me an idea for a great little piece of software that could be invaluable to coders everywhere. I'm imagining a RAMDrive software, ...
26
votes
6answers
777 views

C++, variable declaration in 'if' expression

What's going on here? if(int a = Func1()) { // Works. } if((int a = Func1())) { // Fails to compile. } if((int a = Func1()) && (int b = Func2())) ) { // Do stuff with a and ...
26
votes
5answers
625 views

Why does C++ linking use virtually no CPU? (updated)

On a native C++ project, linking right now can take a minute or two, yet during this time CPU drops from 100% during compilation to virtually zero. Does this mean linking is primarily a disk activity? ...
25
votes
6answers
960 views

Why does Delphi's compilation speed degrade the longer it's open, and what can I do about it?

My company has been running a large project on Delphi for more than a decade. Our codebase has been growing over the years and now stands at around 4 million lines of code. Compilation speed is ...
24
votes
1answer
1k views

Splitting a Clojure namespace over multiple files

Is it possible to split a Clojure namespace over multiple source files when doing ahead-of-time compilation with :gen-class? How do (:main true) and (defn- ...) come into play?
22
votes
7answers
769 views

How can adding a function call cause other symbols to become undefined when linking?

Hey Guys, I'm hoping someone will be able to help troubleshoot what I think is a linker script issue. I'm encountering a strange problem after adding a call to a new function. Without the function ...
22
votes
6answers
2k views

Running :make from gVim in Background

I use gVim in windows to edit my code (mostly C++). I use :make in gVim to compile the project, but this is a blocking operation, that prevents me from using gVim until the compilation is complete. ...
20
votes
11answers
7k views

How do YOU reduce compile time, and linking time for Visual C++ projects? (native c++)

How do YOU reduce compile time, and linking time for VC++ projects? (native C++) Please specify if each suggestion applies to debug, release, or both.
18
votes
2answers
297 views

Compile C# Code In The Application

I want some code that compiles the code that is in my TextBox (for example). What I mean is I want to compile code after running the program. How can I do this?
18
votes
15answers
1k views

Is it possible to write a program without using main() function?

I keep getting this question asked in interviews: Write a program without using main() function? One of my friends showed me some code using Macros, but i could not understand it. So the question ...
18
votes
1answer
459 views

Why a variable can't be defined twice in 2 files in C

Why can't I have int a; in 2 C files. I intend to combine both to make executable. I know from experience that I can't, but I want to find where the standard C99 says this and seal my understanding. ...
18
votes
1answer
2k views

XAML Conditional Compilation

Is there an easy way to use the same conditional compilation symbol that I'm using for my c# code, in my xaml files?
18
votes
4answers
6k views

Fastest way to debug Firefox addons during development

Debugging a Firefox addon is a slow process: (1) edit source code in a JS editor (2) package into XPI using a build script (3) drag into Firefox to install (4) restart Firefox (5) open the JavaScript ...
17
votes
2answers
268 views

Learning incremental compilation design

There are a lot of books and articles about creating compilers which do all the compilation job at a time. And what about design of incremental compilers/parsers, which are used by IDEs? I'm familiar ...
16
votes
2answers
271 views

What is the reason function names are prefixed with an underscore by the compiler?

When I see the assembly code of a C app, like this: emacs hello.c clang -S -O hello.c -o hello.s cat hello.s Function names are prefixed with an underscore (e.g. callq _printf). Why is this done ...
16
votes
12answers
2k views

How to speed up g++ compile time (when using a lot of templates)

This question is perhaps somehow odd, but how can I speed up g++ compile time? My C++ code heavily uses boost and templates. I already moved as much as possible out of the headers files and use the -j ...
16
votes
2answers
2k views

Can Cython compile to an EXE?

I know what Cythons purpose is. It's to write compilable C extensions in a Python-like language in order to produce speedups in your code. What I would like to know (and can't seem to find using my ...
16
votes
9answers
1k views

Compile and optimize for different target architectures

Summary: I want to take advantage of compiler optimizations and processor instruction sets, but still have a portable application (running on different processors). Normally I could indeed compile 5 ...
16
votes
4answers
4k views

How can I package my Perl script to run on a machine without Perl?

People also often ask "How can I compile Perl?" while what they really want is to create an executable that can run on machines even if they don't have Perl installed. There are several solutions, I ...
15
votes
2answers
4k views

Android compilation is slow (using Eclipse)

When I change any .java file and build, the compilation takes 16 seconds. I don't understand why it should be so slow!? I enabled verbose output for Andoroid. Window > Preferences > Android ...
14
votes
1answer
246 views

Other references to how the Stalin compiler brutally optimizes?

J.M. Siskind's research statement states: Stalin is an optimizing compiler for Scheme that performs whole-program static analysis and uses the results of that analysis to generate extremely ...
14
votes
3answers
364 views

`goto` in Python

I must use goto in Python. I read this but my Python implementation (CPython 2.7.1 on Mac) does not have this module, so it doesn't seem to be portable. It should at least work in all Python ...
14
votes
4answers
668 views

Are GCC and Clang parsers really handwritten?

A guy named Eli Bendersky wrote in his blog that GCC and Clang parser are handwritten, ie not done with the help of yacc or any other compiler-compiler. Furthermore he seems to say that they are ...
14
votes
7answers
2k views

How can I use VIM to do .Net Development

I have been researching coding editors but everytime I run up against some issue that is 1/2 coded or in the process of getting better. VIM offers everything in terms of a real powerhouse tool ...
14
votes
2answers
860 views

Static compilation in the .NET world

I'll be writing a small desktop app for a client that has WinXP machines and they won't be installing the .NET framework (at least not for me). So my choices are limited to either C++ or VB6, ...
13
votes
2answers
262 views

what's the difference between C# compilation setting “/debug:pdbonly” and “/debug:full”?

According to msdn http://msdn.microsoft.com/en-us/library/8cw0bt21.aspx , both compilation setting "/debug:pdbonly" and "/debug:full" will make .pdb (Program Database) files be generated. However, ...
13
votes
2answers
281 views

Is there a way to know by which Python version the .pyc file was compiled?

Is there any way to know by which Python version the .pyc file was compiled? I Google out but that doesn't helped me. Thanks in advance.
13
votes
5answers
539 views

Why Compile to an Object File First?

In the last year I've started programming in Fortran working at a research university. Most of my prior experience is in web languages like PHP or old ASP, so I'm a newbie to compile statements as ...
13
votes
6answers
347 views

What does C(++) do with values that aren't stored in variables?

I'm a bit curious about how C and C++ handle data which isn't stored in variables, e.g: int IE6_Bugs = 12345; int Win_Bugs = 56789; Yeah - everything clear. IE6_Bugs has 123456 stored at it's ...
13
votes
9answers
3k views

Compiling a java program into an exe [closed]

Possible Duplicate: How do I create an .exe for a Java program? I've just made a simple program with eclipse and I want to compile it into an exe file, but can't seem to found out how to do ...
13
votes
4answers
6k views

Templates: Use forward declarations to reduce compile time?

I have to deal with a library that consists of many templated classes, which are of course all implemented in header files. Now I'm trying to find a way to reduce the unbearably long compile times ...
13
votes
12answers
22k views

Troubleshooting “program does not contain a static 'Main' method” when it clearly does…?

My MS Visual C# program was compiling and running just fine. I close MS Visual C# to go off and do other things in life. I reopen it and (before doing anything else) go to "Publish" my program and ...
12
votes
6answers
352 views

Fast Qt C++ compile on windows

I have a large project that uses the Qt framework and am trying to find the fastest way to compile it on my Windows install. On my linux machine at home I use 3 year old Linux Mint setup with a dual ...
12
votes
7answers
449 views

Can a C compiler generate an executable 64-bits where pointers are 32-bits?

Most programs fits well on <4GB address space but needs to use new features just available on x64 architecture. Are there compilers/platforms where I can use x64 registers and specific ...
12
votes
3answers
995 views

Compile PHP with GD for iPhone OS 4.1 [closed]

The Goal: have a working version of PHP with the GD library working on an iPod Touch 4th Gen. The Status: PHP is working on the iPod (lighttpd + PHP 5.2.8 + sqlite3) without GD. When trying to ...
12
votes
7answers
3k views

How to decrease build times / speed up compile time in XCode?

What strategies can be used in general to decrease build times for any XCode project? I'm mostly interested in XCode specific strategies. I'm doing iPhone development using XCode, and my project is ...
12
votes
7answers
6k views

Compile Matplotlib for Python on Snow Leopard

I've killed half a day trying to compile matplotlib for python on Snow Leopard. I've used the googles and found this helpful page (http://blog.hyperjeff.net/?p=160) but I still can't get it to ...
12
votes
10answers
2k views

Turning .NET executable into native executable

Is there any approach to convert an application developed in .NET into a native executable (sources are included)? Installing the whole framework (up to .NET Framework 3.5 SP1) takes a lot of time - ...

1 2 3 4 5 53